WhoCites Definitions HOLlib Sections NuprlLIB Doc
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html
Who Cites flatten?
flattenDef flatten(l) == if null(l) then nil else head(l) @ flatten(tl(l)) fi 
Def (recursive)
Thm* 'a:Type, l:('a List) List. flatten(l 'a List
tlDef tl(l) == Case of l; nil  nil ; h.t  t
Thm* A:Type, l:A List. tl(l A List
headDef head(l) == hd(l)
Thm* 'a:Type, l:'a List. mt(l head(l 'a
appendDef as @ bs == Case of as; nil  bs ; a.as'  cons(a; (as' @ bs))  (recursive)
Thm* T:Type, as,bs:T List. (as @ bs T List
nullDef null(as) == Case of as; nil  true ; a.as'  false
Thm* T:Type, as:T List. null(as 
Thm* null(nil)  
bifDef bif(bbx.x(bx); by.y(by)) == if b x(*) else y(x.x) fi
Thm* A:Type, b:x:(bA), y:((b)A). bif(bbx.x(bx); by.y(by))  A
hdDef hd(l) == Case of l; nil  "?" ; h.t  h
Thm* A:Type, l:A List. ||l|| hd(l A

About:
listlist_ind
boolbfalsebtrueifthenelseassertnatural_numbertokenlambdafunction
recursive_def_noticeuniverseaxiommemberimpliesall!abstraction
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html

WhoCites Definitions HOLlib Sections NuprlLIB Doc