organise repository a little bit

This commit is contained in:
2024-06-30 00:07:45 +01:00
parent 37653a7c85
commit de087a86d5
13 changed files with 24 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
automerge.sml
../data-sets/automerge.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
rust.sml
../data-sets/rust.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
seph.sml
../data-sets/seph.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
svelte.sml
../data-sets/svelte.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
automerge.sml
../data-sets/automerge.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
rust.sml
../data-sets/rust.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
seph.sml
../data-sets/seph.sml
end
transaction.sml

View File

@@ -3,7 +3,7 @@ $(SML_LIB)/basis/basis.mlb
ann
"allowVectorExps true"
in
svelte.sml
../data-sets/svelte.sml
end
transaction.sml

16
tests/compare_to_rope.sml Normal file
View File

@@ -0,0 +1,16 @@
structure CompareToRope =
struct
local
fun folder ((pos, delNum, insStr), buffer, fIns, fDel) =
let
val buffer =
if String.size insStr > 0 then
fIns (pos, insStr, buffer) else buffer
in
buffer
end
in
fun runTxns () =
Vector.foldl folder Txn.empty Txn.txns
end
end