diff lib/ur/list.urs @ 840:e4a02e4fa35c

Fix unbound name problem in Jscomp injectors; more List stuff
author Adam Chlipala <adamc@hcoop.net>
date Sat, 06 Jun 2009 15:29:34 -0400
parents b2413e4dd109
children 9f0ea203a1ca
line wrap: on
line diff
--- a/lib/ur/list.urs	Sat Jun 06 14:09:30 2009 -0400
+++ b/lib/ur/list.urs	Sat Jun 06 15:29:34 2009 -0400
@@ -24,6 +24,9 @@
 
 val exists : a ::: Type -> (a -> bool) -> t a -> bool
 
+val foldlM : m ::: (Type -> Type) -> monad m -> a ::: Type -> b ::: Type
+             -> (a -> b -> m b) -> b -> t a -> m b
+
 val foldlMap : a ::: Type -> b ::: Type -> c ::: Type
                -> (a -> b -> c * b) -> b -> t a -> t c * b