| Some definitions of interest. |
|
arb | Def arb(T) == InjCase(lem(T); x. x, "uu") |
| | Thm* T:S. arb(T) T |
|
ge | Def i j == j i |
| | Thm* i,j: . (i j) Prop |
|
hlist | Def hlist('a) == 'a List |
| | Thm* 'a:S. hlist('a) S |
|
label | Def t ...$L == t |
|
length | Def ||as|| == Case of as; nil 0 ; a.as' ||as'||+1 (recursive) |
| | Thm* A:Type, l:A List. ||l||  |
| | Thm* ||nil||  |
| | Thm* 'a:Type, l:'a List. ||l||  |
|
nat | Def == {i: | 0 i } |
| | Thm* Type |
| | Thm* S |
|
not | Def A == A  False |
| | Thm* A:Prop. ( A) Prop |
|
stype | Def S == {T:Type| x:T. True } |
| | Thm* S Type{2} |