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