summaryrefslogtreecommitdiff
path: root/lib/ur/listPair.urs
blob: 9efff405f61c9ad553974e37c210455dea4278bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 mp : a ::: Type -> b ::: Type -> c ::: Type
         -> (a -> b -> c) -> list a -> list b -> list c

val mapM : m ::: (Type -> Type) -> monad m -> a ::: Type -> b ::: Type -> c ::: Type
         -> (a -> b -> m c) -> list a -> list b -> m (list c)