comparison lib/ur/list.urs @ 844:74a1e3bdf430

Fix datatype import bug in Elaborate; fix server-side source setting; more standard library stuff
author Adam Chlipala <adamc@hcoop.net>
date Sun, 07 Jun 2009 16:45:00 -0400
parents 9f0ea203a1ca
children 6725d73c3c31
comparison
equal deleted inserted replaced
843:9f0ea203a1ca 844:74a1e3bdf430
33 val assoc : a ::: Type -> b ::: Type -> eq a -> a -> t (a * b) -> option b 33 val assoc : a ::: Type -> b ::: Type -> eq a -> a -> t (a * b) -> option b
34 34
35 val search : a ::: Type -> b ::: Type -> (a -> option b) -> t a -> option b 35 val search : a ::: Type -> b ::: Type -> (a -> option b) -> t a -> option b
36 36
37 val all : a ::: Type -> (a -> bool) -> t a -> bool 37 val all : a ::: Type -> (a -> bool) -> t a -> bool
38
39 val app : m ::: (Type -> Type) -> monad m -> a ::: Type
40 -> (a -> m unit) -> t a -> m unit