git-subtree-dir: brolib-sml git-subtree-mainline:64471ecf7fgit-subtree-split:fd96032949
14 lines
288 B
Standard ML
14 lines
288 B
Standard ML
structure GapBufferSeph: TRANSACTION =
|
|
struct
|
|
type t = GapBuffer.t
|
|
val empty = GapBuffer.empty
|
|
val insert = GapBuffer.insert
|
|
val delete = GapBuffer.delete
|
|
val toString = GapBuffer.toString
|
|
val txns = SephBlog.txns
|
|
end
|
|
|
|
structure Main = Run(GapBufferSeph)
|
|
|
|
val _ = Main.run ()
|