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 bccbc82a..bb814714 100644
--- a/lib/ur/list.ur
+++ b/lib/ur/list.ur
@@ -101,6 +101,16 @@ fun mp [a] [b] f =
mp' []
end
+fun mapi [a] [b] f =
+ let
+ fun mp' n acc ls =
+ case ls of
+ [] => rev acc
+ | x :: ls => mp' (n + 1) (f n x :: acc) ls
+ in
+ mp' 0 []
+ end
+
fun mapPartial [a] [b] f =
let
fun mp' acc ls =