Mercurial > urweb
view demo/refFun.urs @ 2244:e4a7e3cd6f11
Use uniform representation of comparisons for better simplification.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Mon, 20 Jul 2015 23:25:44 -0700 |
parents | cb5897276abf |
children |
line wrap: on
line source
functor Make(M : sig type data val inj : sql_injectable data end) : sig type ref val new : M.data -> transaction ref val read : ref -> transaction M.data val write : ref -> M.data -> transaction unit val delete : ref -> transaction unit end