aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/list.ur
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ur/list.ur')
-rw-r--r--lib/ur/list.ur10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/ur/list.ur b/lib/ur/list.ur
index 89dc8bbd..771cddc3 100644
--- a/lib/ur/list.ur
+++ b/lib/ur/list.ur
@@ -161,3 +161,13 @@ fun foldlM [m] (_ : monad m) [a] [b] f =
in
foldlM'
end
+
+fun all [m] f =
+ let
+ fun all' ls =
+ case ls of
+ [] => True
+ | x :: ls => f x && all' ls
+ in
+ all'
+ end