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.
@@ -1487,7 +1487,6 @@ var _BinaryTree = class _BinaryTree extends IterableEntryBase {
1487
1487
  * @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).
1488
1488
  *
1489
1489
  * @param keysNodesEntriesOrRaws - An iterable of items to set.
1490
- * @param [values] - An optional parallel iterable of values.
1491
1490
  * @returns An array of booleans indicating the success of each individual `set` operation.
1492
1491
  */
1493
1492
  addMany(keysNodesEntriesOrRaws) {