blob: 9a56f75a34c54fe0346dea7a231548f33dbe1e7c (
plain)
1
2
3
4
5
6
7
8
9
10
|
fun mapX (a ::: Type) (b ::: Type) (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
|