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 f4e2ca1 commit 01cdc18Copy full SHA for 01cdc18
1 file changed
lib/util/AppendOnlyStackedSet.js
@@ -10,12 +10,12 @@
10
*/
11
class AppendOnlyStackedSet {
12
/**
13
- * @param {Array<Set<T>>} sets an optional array of sets
+ * @param {Set<T>[]} sets an optional array of sets
14
15
constructor(sets = []) {
16
- /** @type {Array<Set<T>>} */
+ /** @type {Set<T>[]} */
17
this._sets = sets;
18
- /** @type {Set<T>|undefined} */
+ /** @type {Set<T> | undefined} */
19
this._current = undefined;
20
}
21
0 commit comments