blob: f2287c13f0f42c0327acc43015b4039d1e6880ef (
plain)
1
2
3
4
5
6
7
|
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
|