summaryrefslogtreecommitdiff
path: root/lib/ur/listPair.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-06-09 18:11:59 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-06-09 18:11:59 -0400
commitf6cfaea8a7eb777dae12337178c3b9a268459995 (patch)
treefdefe678f8d11c1efad8dbe6d535da8ccb531f59 /lib/ur/listPair.urs
parentb64c799498c352096f89e1e0ab7a75ab14565d3a (diff)
Some standard library reorgs and additions; handle mutual datatypes better in Specialize
Diffstat (limited to 'lib/ur/listPair.urs')
-rw-r--r--lib/ur/listPair.urs3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ur/listPair.urs b/lib/ur/listPair.urs
index 0c5e5443..310a1a4e 100644
--- a/lib/ur/listPair.urs
+++ b/lib/ur/listPair.urs
@@ -1,3 +1,6 @@
+val foldlPartial : a ::: Type -> b ::: Type -> c ::: Type
+ -> (a -> b -> c -> option c) -> c -> list a -> list b -> option c
+
val mapX : a ::: Type -> b ::: Type -> ctx ::: {Unit}
-> (a -> b -> xml ctx [] []) -> list a -> list b -> xml ctx [] []