Skip to content

Commit 6f49e60

Browse files
authored
[ git ] Merge pull request #265 from andy0130tw/fix/bst-use-fork-impl
fix: Replace @datastructures-js/binary-search-tree with an iterative fork implementation
2 parents d821c81 + 05a1d60 commit 6f49e60

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

lib/js/src/Util/AVLTree.bs.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"webpack-node-externals": "^3.0.0"
4949
},
5050
"dependencies": {
51-
"@datastructures-js/binary-search-tree": "^5.3.2",
51+
"@andy0130tw/binary-search-tree": "^5.3.2-fork.0",
5252
"@glennsl/rescript-fetch": "^v0.2.3",
5353
"@glennsl/rescript-json-combinators": "^1.4.0",
5454
"@rescript/core": "^1.3.0",

src/Util/AVLTree.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type options = {key?: string}
1919
// Constructor
2020
////////////////////////////////////////////////////////////////////////////////
2121

22-
@module("@datastructures-js/binary-search-tree") @new
22+
@module("@andy0130tw/binary-search-tree") @new
2323
external makeInner: (~compare: compareFunction<'a>=?, ~options: options=?, unit) => t<'a> =
2424
"BinarySearchTree"
2525

0 commit comments

Comments
 (0)