add benchmarks for tiny_rope in bench folder

This commit is contained in:
2024-05-28 08:01:10 +01:00
parent 9728a1ca25
commit 1f3736e690
18 changed files with 585 additions and 49 deletions

13
bench/rope_svelte.sml Normal file
View File

@@ -0,0 +1,13 @@
structure RopeSvelte: TRANSACTION =
struct
type t = TinyRope.t
val empty = TinyRope.empty
val insert = TinyRope.insert
val delete = TinyRope.delete
val toString = TinyRope.toString
val txns = SvelteComponent.txns
end
structure Main = Run(RopeSvelte)
val _ = Main.run ()