| Some definitions of interest. |
|
hall | Def all == p:'a  .  x:'a. (p(x)) |
| | Thm* 'a:S. all (('a  hbool)  hbool) |
|
assert | Def b == if b True else False fi |
| | Thm* b: . b Prop |
|
hand | Def and == p: . q: . p q |
| | Thm* and (hbool  hbool  hbool) |
|
hinl | Def inl == x:'a. inl(x) |
| | Thm* 'a,'b:S. inl ('a  hsum('a; 'b)) |
|
hinr | Def inr == x:'b. inr(x) |
| | Thm* 'b,'a:S. inr ('b  hsum('a; 'b)) |
|
hisl | Def isl == u:'a+'b. isl(u) |
| | Thm* 'a,'b:S. isl (hsum('a; 'b)  hbool) |
|
hnot | Def not == p: .  p |
| | Thm* not (hbool  hbool) |
|
label | Def t ...$L == t |
|
stype | Def S == {T:Type| x:T. True } |
| | Thm* S Type{2} |
|
tlambda | Def ( x:T. b(x))(x) == b(x) |