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

14 lines
301 B
Standard ML
Raw Permalink Normal View History

structure GapBufferSvelete: TRANSACTION =
struct
type t = GapBuffer.t
val empty = GapBuffer.empty
val insert = GapBuffer.insert
val delete = GapBuffer.delete
val toString = GapBuffer.toString
val txns = SvelteComponent.txns
end
structure Main = Run(GapBufferSvelete)
val _ = Main.run ()