max-priority-queue-typed 2.2.8 → 2.3.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.
@@ -451,7 +451,6 @@ export declare class BinaryTree<K = any, V = any, R = any> extends IterableEntry
451
451
  * @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).
452
452
  *
453
453
  * @param keysNodesEntriesOrRaws - An iterable of items to set.
454
- * @param [values] - An optional parallel iterable of values.
455
454
  * @returns An array of booleans indicating the success of each individual `set` operation.
456
455
  */
457
456
  addMany(keysNodesEntriesOrRaws: Iterable<K | BinaryTreeNode<K, V> | [K | null | undefined, V | undefined] | null | undefined | R>): boolean[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "max-priority-queue-typed",
3
- "version": "2.2.8",
3
+ "version": "2.3.0",
4
4
  "description": "Max Priority Queue",
5
5
  "browser": "dist/umd/max-priority-queue-typed.min.js",
6
6
  "umd:main": "dist/umd/max-priority-queue-typed.min.js",
@@ -165,6 +165,6 @@
165
165
  "typescript": "^4.9.5"
166
166
  },
167
167
  "dependencies": {
168
- "data-structure-typed": "^2.2.8"
168
+ "data-structure-typed": "^2.3.0"
169
169
  }
170
170
  }
@@ -717,7 +717,6 @@ export class BinaryTree<K = any, V = any, R = any>
717
717
  * @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).
718
718
  *
719
719
  * @param keysNodesEntriesOrRaws - An iterable of items to set.
720
- * @param [values] - An optional parallel iterable of values.
721
720
  * @returns An array of booleans indicating the success of each individual `set` operation.
722
721
  */
723
722
  addMany(