Files
gf-core/transfer/lib/pair.tr
2005-12-05 16:45:11 +00:00

21 lines
439 B
Plaintext

Pair : Type -> Type -> Type
Pair A B = sig { p1 : A; p2 : B }
pair : (A:Type) -> (B:Type) -> A -> B -> Pair A B
pair _ _ x y = rec { p1 = x; p2 = y }
fst : (A:Type) -> (B:Type) -> Pair A B -> A
fst _ _ p = case p of Pair _ _ x _ -> x
snd : (A:Type) -> (B:Type) -> Pair A B -> B
snd _ _ p = case p of Pair _ _ x _ -> x
{-
syntax:
(x1,...,xn) => { p1 = e1; ... ; pn = en }
where n >= 2 and x1,...,xn are expressions or patterns
-}