Cross Reference: Foldl.hascasl
xref
: /
hets
/
HasCASL
/
test
/
Foldl.hascasl
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
Foldl.hascasl revision 71e2518476f672b6cd36d3d0256cfc2e0cb5c9a6
542
N/A
var a: Type
542
N/A
type List a
810
N/A
op nil : List a
810
N/A
op head : List a -> a
542
N/A
op snoc: List a -> a --> List a
542
N/A
forall x:a
542
N/A
. snoc nil x = snoc nil x
542
N/A
. head nil x = x
542
N/A
542
N/A