We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dfa288 commit d3215c0Copy full SHA for d3215c0
src/data-structures/red-black-tree.js
@@ -130,17 +130,6 @@
130
}
131
};
132
133
- RBTree.prototype.getIterator = function () {
134
- return new RBTIterator(this);
135
- };
136
-
137
- function RBTIterator(tree) {
138
- this._tree = tree;
139
- }
140
141
- RBTIterator.prototype.next = function () {
142
143
144
global.RBTree = RBTree;
145
146
0 commit comments