summaryrefslogtreecommitdiff
path: root/lib/ur/listPair.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2019-02-10 18:01:46 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2019-02-10 18:01:46 -0500
commitb9ddbe0ce5c700fef313788fda5c7ecb82c84638 (patch)
tree6242b196f0948c3fcb6509c0ab7b33243c739f6b /lib/ur/listPair.urs
parent0aab3f48920058051d61215f23440d1042659c92 (diff)
List.searchM and ListPair.unzip
Diffstat (limited to 'lib/ur/listPair.urs')
-rw-r--r--lib/ur/listPair.urs2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ur/listPair.urs b/lib/ur/listPair.urs
index 9efff405..91d8807d 100644
--- a/lib/ur/listPair.urs
+++ b/lib/ur/listPair.urs
@@ -11,3 +11,5 @@ val mp : a ::: Type -> b ::: Type -> c ::: Type
val mapM : m ::: (Type -> Type) -> monad m -> a ::: Type -> b ::: Type -> c ::: Type
-> (a -> b -> m c) -> list a -> list b -> m (list c)
+
+val unzip : a ::: Type -> b ::: Type -> list (a * b) -> list a * list b