summaryrefslogtreecommitdiff
path: root/lib/ur/listPair.urs
blob: 218b942055268872c74716f764dafcc757d96514 (plain)
1
2
3
4
5
6
7
8
9
10
val foldlAbort : 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 [] []

val all : a ::: Type -> b ::: Type -> (a -> b -> bool) -> list a -> list b -> bool

val map2 : a ::: Type -> b ::: Type -> c ::: Type
           -> (a -> b -> c) -> list a -> list b -> list c