binary-tree-typed 2.2.8 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +0 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs-legacy/index.cjs +0 -1
- package/dist/cjs-legacy/index.cjs.map +1 -1
- package/dist/esm/index.mjs +0 -1
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm-legacy/index.mjs +0 -1
- package/dist/esm-legacy/index.mjs.map +1 -1
- package/dist/types/data-structures/binary-tree/binary-tree.d.ts +0 -1
- package/dist/umd/binary-tree-typed.js +0 -1
- package/dist/umd/binary-tree-typed.js.map +1 -1
- package/dist/umd/binary-tree-typed.min.js.map +1 -1
- package/package.json +2 -2
- package/src/data-structures/binary-tree/binary-tree.ts +0 -1
package/dist/esm/index.mjs
CHANGED
|
@@ -1482,7 +1482,6 @@ var BinaryTree = class extends IterableEntryBase {
|
|
|
1482
1482
|
* @remarks Time O(N * M), where N is the number of items to set and M is the size of the tree at insertion (due to O(M) `set` operation). Space O(M) (from `set`) + O(N) (for the `inserted` array).
|
|
1483
1483
|
*
|
|
1484
1484
|
* @param keysNodesEntriesOrRaws - An iterable of items to set.
|
|
1485
|
-
* @param [values] - An optional parallel iterable of values.
|
|
1486
1485
|
* @returns An array of booleans indicating the success of each individual `set` operation.
|
|
1487
1486
|
*/
|
|
1488
1487
|
addMany(keysNodesEntriesOrRaws) {
|