Files
sml-projects/brolib-sml/bench/gap_buffer_seph.sml

14 lines
288 B
Standard ML
Raw Normal View History

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 ()