{-# OPTIONS --without-K #-}
module Foreign.Haskell.Either where
open import Level
open import Data.Sum using (_⊎_; inj₁; inj₂)
private
variable
a b : Level
A : Set a
B : Set b
data Either (A : Set a) (B : Set b) : Set (a ⊔ b) where
left : A → Either A B
right : B → Either A B
{-# FOREIGN GHC type AgdaEither l1 l2 a b = Either a b #-}
{-# COMPILE GHC Either = data MAlonzo.Code.Foreign.Haskell.Either.AgdaEither (Left | Right) #-}
toForeign : A ⊎ B → Either A B
toForeign (inj₁ a) = left a
toForeign (inj₂ b) = right b
fromForeign : Either A B → A ⊎ B
fromForeign (left a) = inj₁ a
fromForeign (right b) = inj₂ b