blob: 8d1c873e0e82ed17f2d73c1936ae7b709b6d3203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
fun mapX [a] [b] [ctx ::: {Unit}] f =
let
fun mapX' ls1 ls2 =
case (ls1, ls2) of
([], []) => <xml/>
| (x1 :: ls1, x2 :: ls2) => <xml>{f x1 x2}{mapX' ls1 ls2}</xml>
| _ => error <xml>ListPair.mapX: Unequal list lengths</xml>
in
mapX'
end
fun all [a] [b] f =
let
fun all' ls1 ls2 =
case (ls1, ls2) of
([], []) => True
| (x1 :: ls1, x2 :: ls2) => f x1 x2 && all' ls1 ls2
| _ => False
in
all'
end
|