The Theory gst-lists
Parents
gst-fun
Constants
nil
GS
cons
GS rarr.gif GS rarr.gif GS
list
GS LIST rarr.gif GS
tail
GS rarr.gif GS
head
GS rarr.gif GS
nth
nat.gif rarr.gif GS rarr.gif GS
Definitions
nil
turnstil.gif nil = empty.gifg
cons
turnstil.gif forall.gif h tbull.gif cons h t = h mapsto.gifg t
list
turnstil.gif forall.gif h t
fillbull.gif list [] = nil and.gif list (Cons h t) = cons h (list t)
head
tail
turnstil.gif head = fst and.gif tail = snd
nth
turnstil.gif forall.gif n l
fillbull.gif nth 0 l = head l and.gif nth (n + 1) l = nth n (tail l)

up quick index

V