{-# OPTIONS --without-K --safe #-}
module Function.Properties.RightInverse where
open import Function.Base
open import Function.Bundles
open import Function.Consequences using (inverseʳ⇒surjective)
open import Level using (Level)
open import Data.Product
open import Relation.Binary using (Setoid; IsEquivalence)
private
variable
ℓ₁ ℓ₂ a b : Level
A : Set a
B : Set b
S : Setoid a ℓ₁
T : Setoid b ℓ₂
RightInverse⇒Surjection : RightInverse S T → Surjection T S
RightInverse⇒Surjection I = record
{ f = g
; cong = cong₂
; surjective = λ a → f a , inverseʳ a
} where open RightInverse I
↪⇒↠ : B ↪ A → A ↠ B
↪⇒↠ = RightInverse⇒Surjection