| Who Cites assert? |
|
assert | Def b == if b True else False fi |
| | Thm* b: . b Prop |
|
list_all | Def x L.P(x) == (letrec list_all L = (Case of L; nil True ; h.t P(h) & list_all(t)) ) (L) |
| | Thm* T:Type, P:(T Prop), L:T List. x L.P(x) Type |
| | Thm* T:Type, P:(T Type). x nil.P(x) Type |
|
list_all_2 | Def x L.P(x) == (letrec all L = (Case of L; nil true ; h.t P(h) (all(t))) ) (L) |
| | Thm* T:Type, P:(T  ), L:T List. x L.P(x)  |
|
letrec_body | Def = b == b |
|
letrec_arg | Def x b(x) (x) == b(x) |
|
letrec | Def (letrec f b(f)) == b((letrec f b(f)) ) (recursive) |
|
band | Def p q == if p q else false fi |
| | Thm* p,q: . (p q)  |