blob: 310a1a4e0344f392f7206aadc6e2b4bfeeb6a735 (
plain)
1
2
3
4
5
6
7
|
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 [] []
val all : a ::: Type -> b ::: Type -> (a -> b -> bool) -> list a -> list b -> bool
|