packages feed

dhall-docs-1.0.0: 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