annotate demo/refFun.urs @ 2024:6372a742ab04

Allow '+' char in blessMime See this one [1] for an example [1] - http://www.w3.org/TR/SVGTiny12/mimereg.html
author Sergey Mironov <grrwlf@gmail.com>
date Thu, 05 Jun 2014 20:36:12 +0000
parents cb5897276abf
children
rev   line source
adamc@419 1 functor Make(M : sig
adamc@419 2 type data
adamc@419 3 val inj : sql_injectable data
adamc@419 4 end) : sig
adamc@419 5 type ref
adamc@419 6 val new : M.data -> transaction ref
adamc@419 7 val read : ref -> transaction M.data
adamc@419 8 val write : ref -> M.data -> transaction unit
adamc@419 9 val delete : ref -> transaction unit
adamc@419 10 end