aboutsummaryrefslogtreecommitdiffhomepage
path: root/demo/list.ur
blob: c2dfce229545719fc9d8304d7578e9f4a3785637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
datatype list t = Nil | Cons of t * list t

fun length' (t ::: Type) (ls : list t) (acc : int) =
    case ls of
        Nil => acc
      | Cons (_, ls') => length' ls' (acc + 1)

fun length (t ::: Type) (ls : list t) = length' ls 0

fun rev' (t ::: Type) (ls : list t) (acc : list t) =
    case ls of
        Nil => acc
      | Cons (x, ls') => rev' ls' (Cons (x, acc))

fun rev (t ::: Type) (ls : list t) = rev' ls Nil