packages feed

dhall-docs-0.0.1: tasty/data/package/Pair.dhall

{-  Just a *Pair* right here
-}

let Pair
  : forall(A: Type) -- | Type of first position
  -> forall(B: Type) -- | Type of second position
  -> Type
  = λ(A: Type) -> λ(B: Type) -> {first: A, second: B}

in Pair