summaryrefslogtreecommitdiff
path: root/demo/treeFun.urs
blob: 323c2e5ae70681793cd53594a22ff43c614c813f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
functor Make(M : sig
                 type key
                 con id :: Name
                 con parent :: Name
                 con cols :: {Type}
                 constraint [id] ~ [parent]
                 constraint [id, parent] ~ cols

                 val key_inj : sql_injectable_prim key

                 table tab : ([id = key, parent = option key] ++ cols)
             end) : sig

    con id = M.id
    con parent = M.parent

    val tree : ($([id = M.key, parent = option M.key] ++ M.cols) -> xbody)
               -> option M.key
               -> transaction xbody

end