blob: 107bf92c020932a48972fabd28906d7298825368 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
datatype list t = Nil | Cons of t * list t
fun length (t ::: Type) (ls : list t) =
let
fun length' (ls : list t) (acc : int) =
case ls of
Nil => acc
| Cons (_, ls') => length' ls' (acc + 1)
in
length' ls 0
end
fun rev (t ::: Type) (ls : list t) =
let
fun rev' (ls : list t) (acc : list t) =
case ls of
Nil => acc
| Cons (x, ls') => rev' ls' (Cons (x, acc))
in
rev' ls Nil
end
|