summaryrefslogtreecommitdiff
path: root/tests/impl.ur
blob: 4a2e7a090f45c0c36c9b4d902729b8693f582048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fun id [t :: Type] (x : t) = x
val id_self = id [t :: Type -> t -> t] id

fun idi [t ::: Type] (x : t) = x
val idi_self = idi @@idi

fun picker [na :: Name] [a ::: Type] [nb :: Name] [b ::: Type] [fs ::: {Type}] [[na] ~ [nb]] [[na, nb] ~ fs]
        (r : $([na = a, nb = b] ++ fs)) = {na = r.na, nb = r.nb}
val getem = picker [#A] [#C] {A = 0, B = 1.0, C = "hi", D = {}}
val getem2 = picker [#A] [_] {A = 0, B = 1.0, C = "hi", D = {}}
val getem3 = picker [#A] [_::Name] {A = 0, B = 1.0, C = "hi", D = {}}

fun picker_ohmy [na ::: Name] [a ::: Type] [nb ::: Name] [b ::: Type] [fs ::: {Type}] [[na] ~ [nb]] [[na, nb] ~ fs]
        (r : $([na = a, nb = b] ++ fs)) = {na = r.na, nb = r.nb}
val getem_ohmy = picker_ohmy {A = 0, B = 1.0, C = "hi", D = {}}

fun proj [fs] [t] [nm :: Name] [[nm] ~ fs] (r : $([nm = t] ++ fs)) = r.nm
val one = proj [#A] {A = 1, B = True}