diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-06-07 14:15:22 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-06-07 14:15:22 -0400 |
commit | 818577c761fb4d2ebbddbeb614bfbf33e38b92f6 (patch) | |
tree | 15b41a16e734ff4738bf2b275546736121cf125a /lib/ur/list.urs | |
parent | e0c25b454504db612d9949ecead4bd04925f92ef (diff) |
List.all; fix ANDALSO/ORELSE parsing precedence
Diffstat (limited to 'lib/ur/list.urs')
-rw-r--r-- | lib/ur/list.urs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ur/list.urs b/lib/ur/list.urs index 89e7eecb..6a653ba9 100644 --- a/lib/ur/list.urs +++ b/lib/ur/list.urs @@ -33,3 +33,5 @@ val foldlMap : a ::: Type -> b ::: Type -> c ::: Type val assoc : a ::: Type -> b ::: Type -> eq a -> a -> t (a * b) -> option b val search : a ::: Type -> b ::: Type -> (a -> option b) -> t a -> option b + +val all : a ::: Type -> (a -> bool) -> t a -> bool |