mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* feat(collection): return entries instead of values in toJSON method * test: adjust test --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
980 lines
35 KiB
TypeScript
980 lines
35 KiB
TypeScript
/* eslint-disable no-param-reassign */
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface CollectionConstructor {
|
|
new (): Collection<unknown, unknown>;
|
|
new <K, V>(entries?: readonly (readonly [K, V])[] | null): Collection<K, V>;
|
|
new <K, V>(iterable: Iterable<readonly [K, V]>): Collection<K, V>;
|
|
readonly prototype: Collection<unknown, unknown>;
|
|
readonly [Symbol.species]: CollectionConstructor;
|
|
}
|
|
|
|
/**
|
|
* Represents an immutable version of a collection
|
|
*/
|
|
export type ReadonlyCollection<K, V> = Omit<
|
|
Collection<K, V>,
|
|
'delete' | 'ensure' | 'forEach' | 'get' | 'reverse' | 'set' | 'sort' | 'sweep'
|
|
> &
|
|
ReadonlyMap<K, V>;
|
|
|
|
/**
|
|
* Separate interface for the constructor so that emitted js does not have a constructor that overwrites itself
|
|
*
|
|
* @internal
|
|
*/
|
|
export interface Collection<K, V> extends Map<K, V> {
|
|
constructor: CollectionConstructor;
|
|
}
|
|
|
|
/**
|
|
* A Map with additional utility methods. This is used throughout discord.js rather than Arrays for anything that has
|
|
* an ID, for significantly improved performance and ease-of-use.
|
|
*
|
|
* @typeParam K - The key type this collection holds
|
|
* @typeParam V - The value type this collection holds
|
|
*/
|
|
export class Collection<K, V> extends Map<K, V> {
|
|
/**
|
|
* Obtains the value of the given key if it exists, otherwise sets and returns the value provided by the default value generator.
|
|
*
|
|
* @param key - The key to get if it exists, or set otherwise
|
|
* @param defaultValueGenerator - A function that generates the default value
|
|
* @example
|
|
* ```ts
|
|
* collection.ensure(guildId, () => defaultGuildConfig);
|
|
* ```
|
|
*/
|
|
public ensure(key: K, defaultValueGenerator: (key: K, collection: this) => V): V {
|
|
if (this.has(key)) return this.get(key)!;
|
|
if (typeof defaultValueGenerator !== 'function') throw new TypeError(`${defaultValueGenerator} is not a function`);
|
|
const defaultValue = defaultValueGenerator(key, this);
|
|
this.set(key, defaultValue);
|
|
return defaultValue;
|
|
}
|
|
|
|
/**
|
|
* Checks if all of the elements exist in the collection.
|
|
*
|
|
* @param keys - The keys of the elements to check for
|
|
* @returns `true` if all of the elements exist, `false` if at least one does not exist.
|
|
*/
|
|
public hasAll(...keys: K[]) {
|
|
return keys.every((key) => super.has(key));
|
|
}
|
|
|
|
/**
|
|
* Checks if any of the elements exist in the collection.
|
|
*
|
|
* @param keys - The keys of the elements to check for
|
|
* @returns `true` if any of the elements exist, `false` if none exist.
|
|
*/
|
|
public hasAny(...keys: K[]) {
|
|
return keys.some((key) => super.has(key));
|
|
}
|
|
|
|
/**
|
|
* Obtains the first value(s) in this collection.
|
|
*
|
|
* @param amount - Amount of values to obtain from the beginning
|
|
* @returns A single value if no amount is provided or an array of values, starting from the end if amount is negative
|
|
*/
|
|
public first(): V | undefined;
|
|
public first(amount: number): V[];
|
|
public first(amount?: number): V | V[] | undefined {
|
|
if (amount === undefined) return this.values().next().value;
|
|
if (amount < 0) return this.last(amount * -1);
|
|
amount = Math.min(this.size, amount);
|
|
const iter = this.values();
|
|
return Array.from({ length: amount }, (): V => iter.next().value);
|
|
}
|
|
|
|
/**
|
|
* Obtains the first key(s) in this collection.
|
|
*
|
|
* @param amount - Amount of keys to obtain from the beginning
|
|
* @returns A single key if no amount is provided or an array of keys, starting from the end if
|
|
* amount is negative
|
|
*/
|
|
public firstKey(): K | undefined;
|
|
public firstKey(amount: number): K[];
|
|
public firstKey(amount?: number): K | K[] | undefined {
|
|
if (amount === undefined) return this.keys().next().value;
|
|
if (amount < 0) return this.lastKey(amount * -1);
|
|
amount = Math.min(this.size, amount);
|
|
const iter = this.keys();
|
|
return Array.from({ length: amount }, (): K => iter.next().value);
|
|
}
|
|
|
|
/**
|
|
* Obtains the last value(s) in this collection.
|
|
*
|
|
* @param amount - Amount of values to obtain from the end
|
|
* @returns A single value if no amount is provided or an array of values, starting from the start if
|
|
* amount is negative
|
|
*/
|
|
public last(): V | undefined;
|
|
public last(amount: number): V[];
|
|
public last(amount?: number): V | V[] | undefined {
|
|
const arr = [...this.values()];
|
|
if (amount === undefined) return arr[arr.length - 1];
|
|
if (amount < 0) return this.first(amount * -1);
|
|
if (!amount) return [];
|
|
return arr.slice(-amount);
|
|
}
|
|
|
|
/**
|
|
* Obtains the last key(s) in this collection.
|
|
*
|
|
* @param amount - Amount of keys to obtain from the end
|
|
* @returns A single key if no amount is provided or an array of keys, starting from the start if
|
|
* amount is negative
|
|
*/
|
|
public lastKey(): K | undefined;
|
|
public lastKey(amount: number): K[];
|
|
public lastKey(amount?: number): K | K[] | undefined {
|
|
const arr = [...this.keys()];
|
|
if (amount === undefined) return arr[arr.length - 1];
|
|
if (amount < 0) return this.firstKey(amount * -1);
|
|
if (!amount) return [];
|
|
return arr.slice(-amount);
|
|
}
|
|
|
|
/**
|
|
* Identical to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at | Array.at()}.
|
|
* Returns the item at a given index, allowing for positive and negative integers.
|
|
* Negative integers count back from the last item in the collection.
|
|
*
|
|
* @param index - The index of the element to obtain
|
|
*/
|
|
public at(index: number) {
|
|
index = Math.floor(index);
|
|
const arr = [...this.values()];
|
|
return arr.at(index);
|
|
}
|
|
|
|
/**
|
|
* Identical to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at | Array.at()}.
|
|
* Returns the key at a given index, allowing for positive and negative integers.
|
|
* Negative integers count back from the last item in the collection.
|
|
*
|
|
* @param index - The index of the key to obtain
|
|
*/
|
|
public keyAt(index: number) {
|
|
index = Math.floor(index);
|
|
const arr = [...this.keys()];
|
|
return arr.at(index);
|
|
}
|
|
|
|
/**
|
|
* Obtains unique random value(s) from this collection.
|
|
*
|
|
* @param amount - Amount of values to obtain randomly
|
|
* @returns A single value if no amount is provided or an array of values
|
|
*/
|
|
public random(): V | undefined;
|
|
public random(amount: number): V[];
|
|
public random(amount?: number): V | V[] | undefined {
|
|
const arr = [...this.values()];
|
|
if (amount === undefined) return arr[Math.floor(Math.random() * arr.length)];
|
|
if (!arr.length || !amount) return [];
|
|
return Array.from(
|
|
{ length: Math.min(amount, arr.length) },
|
|
(): V => arr.splice(Math.floor(Math.random() * arr.length), 1)[0]!,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Obtains unique random key(s) from this collection.
|
|
*
|
|
* @param amount - Amount of keys to obtain randomly
|
|
* @returns A single key if no amount is provided or an array
|
|
*/
|
|
public randomKey(): K | undefined;
|
|
public randomKey(amount: number): K[];
|
|
public randomKey(amount?: number): K | K[] | undefined {
|
|
const arr = [...this.keys()];
|
|
if (amount === undefined) return arr[Math.floor(Math.random() * arr.length)];
|
|
if (!arr.length || !amount) return [];
|
|
return Array.from(
|
|
{ length: Math.min(amount, arr.length) },
|
|
(): K => arr.splice(Math.floor(Math.random() * arr.length), 1)[0]!,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Identical to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse | Array.reverse()}
|
|
* but returns a Collection instead of an Array.
|
|
*/
|
|
public reverse() {
|
|
const entries = [...this.entries()].reverse();
|
|
this.clear();
|
|
for (const [key, value] of entries) this.set(key, value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Searches for a single item where the given function returns a truthy value. This behaves like
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find | Array.find()}.
|
|
* All collections used in Discord.js are mapped using their `id` property, and if you want to find by id you
|
|
* should use the `get` method. See
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/get | MDN} for details.
|
|
*
|
|
* @param fn - The function to test with (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.find(user => user.username === 'Bob');
|
|
* ```
|
|
*/
|
|
public find<V2 extends V>(fn: (value: V, key: K, collection: this) => value is V2): V2 | undefined;
|
|
public find(fn: (value: V, key: K, collection: this) => unknown): V | undefined;
|
|
public find<This, V2 extends V>(
|
|
fn: (this: This, value: V, key: K, collection: this) => value is V2,
|
|
thisArg: This,
|
|
): V2 | undefined;
|
|
public find<This>(fn: (this: This, value: V, key: K, collection: this) => unknown, thisArg: This): V | undefined;
|
|
public find(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): V | undefined {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
for (const [key, val] of this) {
|
|
if (fn(val, key, this)) return val;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Searches for the key of a single item where the given function returns a truthy value. This behaves like
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex | Array.findIndex()},
|
|
* but returns the key rather than the positional index.
|
|
*
|
|
* @param fn - The function to test with (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.findKey(user => user.username === 'Bob');
|
|
* ```
|
|
*/
|
|
public findKey<K2 extends K>(fn: (value: V, key: K, collection: this) => key is K2): K2 | undefined;
|
|
public findKey(fn: (value: V, key: K, collection: this) => unknown): K | undefined;
|
|
public findKey<This, K2 extends K>(
|
|
fn: (this: This, value: V, key: K, collection: this) => key is K2,
|
|
thisArg: This,
|
|
): K2 | undefined;
|
|
public findKey<This>(fn: (this: This, value: V, key: K, collection: this) => unknown, thisArg: This): K | undefined;
|
|
public findKey(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): K | undefined {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
for (const [key, val] of this) {
|
|
if (fn(val, key, this)) return key;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Searches for a last item where the given function returns a truthy value. This behaves like
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findLast | Array.findLast()}.
|
|
*
|
|
* @param fn - The function to test with (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
*/
|
|
public findLast<V2 extends V>(fn: (value: V, key: K, collection: this) => value is V2): V2 | undefined;
|
|
public findLast(fn: (value: V, key: K, collection: this) => unknown): V | undefined;
|
|
public findLast<This, V2 extends V>(
|
|
fn: (this: This, value: V, key: K, collection: this) => value is V2,
|
|
thisArg: This,
|
|
): V2 | undefined;
|
|
public findLast<This>(fn: (this: This, value: V, key: K, collection: this) => unknown, thisArg: This): V | undefined;
|
|
public findLast(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): V | undefined {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const entries = [...this.entries()];
|
|
for (let index = entries.length - 1; index >= 0; index--) {
|
|
const val = entries[index]![1];
|
|
const key = entries[index]![0];
|
|
if (fn(val, key, this)) return val;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Searches for the key of a last item where the given function returns a truthy value. This behaves like
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findLastIndex | Array.findLastIndex()},
|
|
* but returns the key rather than the positional index.
|
|
*
|
|
* @param fn - The function to test with (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
*/
|
|
public findLastKey<K2 extends K>(fn: (value: V, key: K, collection: this) => key is K2): K2 | undefined;
|
|
public findLastKey(fn: (value: V, key: K, collection: this) => unknown): K | undefined;
|
|
public findLastKey<This, K2 extends K>(
|
|
fn: (this: This, value: V, key: K, collection: this) => key is K2,
|
|
thisArg: This,
|
|
): K2 | undefined;
|
|
public findLastKey<This>(
|
|
fn: (this: This, value: V, key: K, collection: this) => unknown,
|
|
thisArg: This,
|
|
): K | undefined;
|
|
public findLastKey(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): K | undefined {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const entries = [...this.entries()];
|
|
for (let index = entries.length - 1; index >= 0; index--) {
|
|
const key = entries[index]![0];
|
|
const val = entries[index]![1];
|
|
if (fn(val, key, this)) return key;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Removes items that satisfy the provided filter function.
|
|
*
|
|
* @param fn - Function used to test (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @returns The number of removed entries
|
|
*/
|
|
public sweep(fn: (value: V, key: K, collection: this) => unknown): number;
|
|
public sweep<T>(fn: (this: T, value: V, key: K, collection: this) => unknown, thisArg: T): number;
|
|
public sweep(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): number {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const previousSize = this.size;
|
|
for (const [key, val] of this) {
|
|
if (fn(val, key, this)) this.delete(key);
|
|
}
|
|
|
|
return previousSize - this.size;
|
|
}
|
|
|
|
/**
|
|
* Identical to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter | Array.filter()},
|
|
* but returns a Collection instead of an Array.
|
|
*
|
|
* @param fn - The function to test with (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.filter(user => user.username === 'Bob');
|
|
* ```
|
|
*/
|
|
public filter<K2 extends K>(fn: (value: V, key: K, collection: this) => key is K2): Collection<K2, V>;
|
|
public filter<V2 extends V>(fn: (value: V, key: K, collection: this) => value is V2): Collection<K, V2>;
|
|
public filter(fn: (value: V, key: K, collection: this) => unknown): Collection<K, V>;
|
|
public filter<This, K2 extends K>(
|
|
fn: (this: This, value: V, key: K, collection: this) => key is K2,
|
|
thisArg: This,
|
|
): Collection<K2, V>;
|
|
public filter<This, V2 extends V>(
|
|
fn: (this: This, value: V, key: K, collection: this) => value is V2,
|
|
thisArg: This,
|
|
): Collection<K, V2>;
|
|
public filter<This>(fn: (this: This, value: V, key: K, collection: this) => unknown, thisArg: This): Collection<K, V>;
|
|
public filter(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): Collection<K, V> {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const results = new this.constructor[Symbol.species]<K, V>();
|
|
for (const [key, val] of this) {
|
|
if (fn(val, key, this)) results.set(key, val);
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
/**
|
|
* Partitions the collection into two collections where the first collection
|
|
* contains the items that passed and the second contains the items that failed.
|
|
*
|
|
* @param fn - Function used to test (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* const [big, small] = collection.partition(guild => guild.memberCount > 250);
|
|
* ```
|
|
*/
|
|
public partition<K2 extends K>(
|
|
fn: (value: V, key: K, collection: this) => key is K2,
|
|
): [Collection<K2, V>, Collection<Exclude<K, K2>, V>];
|
|
public partition<V2 extends V>(
|
|
fn: (value: V, key: K, collection: this) => value is V2,
|
|
): [Collection<K, V2>, Collection<K, Exclude<V, V2>>];
|
|
public partition(fn: (value: V, key: K, collection: this) => unknown): [Collection<K, V>, Collection<K, V>];
|
|
public partition<This, K2 extends K>(
|
|
fn: (this: This, value: V, key: K, collection: this) => key is K2,
|
|
thisArg: This,
|
|
): [Collection<K2, V>, Collection<Exclude<K, K2>, V>];
|
|
public partition<This, V2 extends V>(
|
|
fn: (this: This, value: V, key: K, collection: this) => value is V2,
|
|
thisArg: This,
|
|
): [Collection<K, V2>, Collection<K, Exclude<V, V2>>];
|
|
public partition<This>(
|
|
fn: (this: This, value: V, key: K, collection: this) => unknown,
|
|
thisArg: This,
|
|
): [Collection<K, V>, Collection<K, V>];
|
|
public partition(
|
|
fn: (value: V, key: K, collection: this) => unknown,
|
|
thisArg?: unknown,
|
|
): [Collection<K, V>, Collection<K, V>] {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const results: [Collection<K, V>, Collection<K, V>] = [
|
|
new this.constructor[Symbol.species]<K, V>(),
|
|
new this.constructor[Symbol.species]<K, V>(),
|
|
];
|
|
for (const [key, val] of this) {
|
|
if (fn(val, key, this)) {
|
|
results[0].set(key, val);
|
|
} else {
|
|
results[1].set(key, val);
|
|
}
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
/**
|
|
* Maps each item into a Collection, then joins the results into a single Collection. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap | Array.flatMap()}.
|
|
*
|
|
* @param fn - Function that produces a new Collection
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.flatMap(guild => guild.members.cache);
|
|
* ```
|
|
*/
|
|
public flatMap<T>(fn: (value: V, key: K, collection: this) => Collection<K, T>): Collection<K, T>;
|
|
public flatMap<T, This>(
|
|
fn: (this: This, value: V, key: K, collection: this) => Collection<K, T>,
|
|
thisArg: This,
|
|
): Collection<K, T>;
|
|
public flatMap<T>(fn: (value: V, key: K, collection: this) => Collection<K, T>, thisArg?: unknown): Collection<K, T> {
|
|
// eslint-disable-next-line unicorn/no-array-method-this-argument
|
|
const collections = this.map(fn, thisArg);
|
|
return new this.constructor[Symbol.species]<K, T>().concat(...collections);
|
|
}
|
|
|
|
/**
|
|
* Maps each item to another value into an array. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map | Array.map()}.
|
|
*
|
|
* @param fn - Function that produces an element of the new array, taking three arguments
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.map(user => user.tag);
|
|
* ```
|
|
*/
|
|
public map<T>(fn: (value: V, key: K, collection: this) => T): T[];
|
|
public map<This, T>(fn: (this: This, value: V, key: K, collection: this) => T, thisArg: This): T[];
|
|
public map<T>(fn: (value: V, key: K, collection: this) => T, thisArg?: unknown): T[] {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const iter = this.entries();
|
|
return Array.from({ length: this.size }, (): T => {
|
|
const [key, value] = iter.next().value;
|
|
return fn(value, key, this);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Maps each item to another value into a collection. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map | Array.map()}.
|
|
*
|
|
* @param fn - Function that produces an element of the new collection, taking three arguments
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.mapValues(user => user.tag);
|
|
* ```
|
|
*/
|
|
public mapValues<T>(fn: (value: V, key: K, collection: this) => T): Collection<K, T>;
|
|
public mapValues<This, T>(fn: (this: This, value: V, key: K, collection: this) => T, thisArg: This): Collection<K, T>;
|
|
public mapValues<T>(fn: (value: V, key: K, collection: this) => T, thisArg?: unknown): Collection<K, T> {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
const coll = new this.constructor[Symbol.species]<K, T>();
|
|
for (const [key, val] of this) coll.set(key, fn(val, key, this));
|
|
return coll;
|
|
}
|
|
|
|
/**
|
|
* Checks if there exists an item that passes a test. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some | Array.some()}.
|
|
*
|
|
* @param fn - Function used to test (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.some(user => user.discriminator === '0000');
|
|
* ```
|
|
*/
|
|
public some(fn: (value: V, key: K, collection: this) => unknown): boolean;
|
|
public some<T>(fn: (this: T, value: V, key: K, collection: this) => unknown, thisArg: T): boolean;
|
|
public some(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): boolean {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
for (const [key, val] of this) {
|
|
if (fn(val, key, this)) return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks if all items passes a test. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every | Array.every()}.
|
|
*
|
|
* @param fn - Function used to test (should return a boolean)
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection.every(user => !user.bot);
|
|
* ```
|
|
*/
|
|
public every<K2 extends K>(fn: (value: V, key: K, collection: this) => key is K2): this is Collection<K2, V>;
|
|
public every<V2 extends V>(fn: (value: V, key: K, collection: this) => value is V2): this is Collection<K, V2>;
|
|
public every(fn: (value: V, key: K, collection: this) => unknown): boolean;
|
|
public every<This, K2 extends K>(
|
|
fn: (this: This, value: V, key: K, collection: this) => key is K2,
|
|
thisArg: This,
|
|
): this is Collection<K2, V>;
|
|
public every<This, V2 extends V>(
|
|
fn: (this: This, value: V, key: K, collection: this) => value is V2,
|
|
thisArg: This,
|
|
): this is Collection<K, V2>;
|
|
public every<This>(fn: (this: This, value: V, key: K, collection: this) => unknown, thisArg: This): boolean;
|
|
public every(fn: (value: V, key: K, collection: this) => unknown, thisArg?: unknown): boolean {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
for (const [key, val] of this) {
|
|
if (!fn(val, key, this)) return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Applies a function to produce a single value. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce | Array.reduce()}.
|
|
*
|
|
* @param fn - Function used to reduce, taking four arguments; `accumulator`, `currentValue`, `currentKey`,
|
|
* and `collection`
|
|
* @param initialValue - Starting value for the accumulator
|
|
* @example
|
|
* ```ts
|
|
* collection.reduce((acc, guild) => acc + guild.memberCount, 0);
|
|
* ```
|
|
*/
|
|
public reduce<T = V>(fn: (accumulator: T, value: V, key: K, collection: this) => T, initialValue?: T): T {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
let accumulator!: T;
|
|
|
|
const iterator = this.entries();
|
|
if (initialValue === undefined) {
|
|
if (this.size === 0) throw new TypeError('Reduce of empty collection with no initial value');
|
|
accumulator = iterator.next().value[1];
|
|
} else {
|
|
accumulator = initialValue;
|
|
}
|
|
|
|
for (const [key, value] of iterator) {
|
|
accumulator = fn(accumulator, value, key, this);
|
|
}
|
|
|
|
return accumulator;
|
|
}
|
|
|
|
/**
|
|
* Applies a function to produce a single value. Identical in behavior to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduceRight | Array.reduceRight()}.
|
|
*
|
|
* @param fn - Function used to reduce, taking four arguments; `accumulator`, `value`, `key`, and `collection`
|
|
* @param initialValue - Starting value for the accumulator
|
|
*/
|
|
public reduceRight<T>(fn: (accumulator: T, value: V, key: K, collection: this) => T, initialValue?: T): T {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
const entries = [...this.entries()];
|
|
let accumulator!: T;
|
|
|
|
let index: number;
|
|
if (initialValue === undefined) {
|
|
if (entries.length === 0) throw new TypeError('Reduce of empty collection with no initial value');
|
|
accumulator = entries[entries.length - 1]![1] as unknown as T;
|
|
index = entries.length - 1;
|
|
} else {
|
|
accumulator = initialValue;
|
|
index = entries.length;
|
|
}
|
|
|
|
while (--index >= 0) {
|
|
const key = entries[index]![0];
|
|
const val = entries[index]![1];
|
|
accumulator = fn(accumulator, val, key, this);
|
|
}
|
|
|
|
return accumulator;
|
|
}
|
|
|
|
/**
|
|
* Identical to
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach | Map.forEach()},
|
|
* but returns the collection instead of undefined.
|
|
*
|
|
* @param fn - Function to execute for each element
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection
|
|
* .each(user => console.log(user.username))
|
|
* .filter(user => user.bot)
|
|
* .each(user => console.log(user.username));
|
|
* ```
|
|
*/
|
|
public each(fn: (value: V, key: K, collection: this) => void): this;
|
|
public each<T>(fn: (this: T, value: V, key: K, collection: this) => void, thisArg: T): this;
|
|
public each(fn: (value: V, key: K, collection: this) => void, thisArg?: unknown): this {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
|
|
for (const [key, value] of this) {
|
|
fn(value, key, this);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Runs a function on the collection and returns the collection.
|
|
*
|
|
* @param fn - Function to execute
|
|
* @param thisArg - Value to use as `this` when executing the function
|
|
* @example
|
|
* ```ts
|
|
* collection
|
|
* .tap(coll => console.log(coll.size))
|
|
* .filter(user => user.bot)
|
|
* .tap(coll => console.log(coll.size))
|
|
* ```
|
|
*/
|
|
public tap(fn: (collection: this) => void): this;
|
|
public tap<T>(fn: (this: T, collection: this) => void, thisArg: T): this;
|
|
public tap(fn: (collection: this) => void, thisArg?: unknown): this {
|
|
if (typeof fn !== 'function') throw new TypeError(`${fn} is not a function`);
|
|
if (thisArg !== undefined) fn = fn.bind(thisArg);
|
|
fn(this);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Creates an identical shallow copy of this collection.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const newColl = someColl.clone();
|
|
* ```
|
|
*/
|
|
public clone(): Collection<K, V> {
|
|
return new this.constructor[Symbol.species](this);
|
|
}
|
|
|
|
/**
|
|
* Combines this collection with others into a new collection. None of the source collections are modified.
|
|
*
|
|
* @param collections - Collections to merge
|
|
* @example
|
|
* ```ts
|
|
* const newColl = someColl.concat(someOtherColl, anotherColl, ohBoyAColl);
|
|
* ```
|
|
*/
|
|
public concat(...collections: ReadonlyCollection<K, V>[]) {
|
|
const newColl = this.clone();
|
|
for (const coll of collections) {
|
|
for (const [key, val] of coll) newColl.set(key, val);
|
|
}
|
|
|
|
return newColl;
|
|
}
|
|
|
|
/**
|
|
* Checks if this collection shares identical items with another.
|
|
* This is different to checking for equality using equal-signs, because
|
|
* the collections may be different objects, but contain the same data.
|
|
*
|
|
* @param collection - Collection to compare with
|
|
* @returns Whether the collections have identical contents
|
|
*/
|
|
public equals(collection: ReadonlyCollection<K, V>) {
|
|
if (!collection) return false; // runtime check
|
|
if (this === collection) return true;
|
|
if (this.size !== collection.size) return false;
|
|
for (const [key, value] of this) {
|
|
if (!collection.has(key) || value !== collection.get(key)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* The sort method sorts the items of a collection in place and returns it.
|
|
* The sort is not necessarily stable in Node 10 or older.
|
|
* The default sort order is according to string Unicode code points.
|
|
*
|
|
* @param compareFunction - Specifies a function that defines the sort order.
|
|
* If omitted, the collection is sorted according to each character's Unicode code point value, according to the string conversion of each element.
|
|
* @example
|
|
* ```ts
|
|
* collection.sort((userA, userB) => userA.createdTimestamp - userB.createdTimestamp);
|
|
* ```
|
|
*/
|
|
public sort(compareFunction: Comparator<K, V> = Collection.defaultSort) {
|
|
const entries = [...this.entries()];
|
|
entries.sort((a, b): number => compareFunction(a[1], b[1], a[0], b[0]));
|
|
|
|
// Perform clean-up
|
|
super.clear();
|
|
|
|
// Set the new entries
|
|
for (const [key, value] of entries) {
|
|
super.set(key, value);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* The intersection method returns a new collection containing the items where the key is present in both collections.
|
|
*
|
|
* @param other - The other Collection to filter against
|
|
* @example
|
|
* ```ts
|
|
* const col1 = new Collection([['a', 1], ['b', 2]]);
|
|
* const col2 = new Collection([['a', 1], ['c', 3]]);
|
|
* const intersection = col1.intersection(col2);
|
|
* console.log(col1.intersection(col2));
|
|
* // => Collection { 'a' => 1 }
|
|
* ```
|
|
*/
|
|
public intersection<T>(other: ReadonlyCollection<K, T>): Collection<K, T | V> {
|
|
const coll = new this.constructor[Symbol.species]<K, T | V>();
|
|
|
|
for (const [key, value] of this) {
|
|
if (other.has(key)) coll.set(key, value);
|
|
}
|
|
|
|
return coll;
|
|
}
|
|
|
|
/**
|
|
* Returns a new collection containing the items where the key is present in either of the collections.
|
|
*
|
|
* @remarks
|
|
*
|
|
* If the collections have any items with the same key, the value from the first collection will be used.
|
|
* @param other - The other Collection to filter against
|
|
* @example
|
|
* ```ts
|
|
* const col1 = new Collection([['a', 1], ['b', 2]]);
|
|
* const col2 = new Collection([['a', 1], ['b', 3], ['c', 3]]);
|
|
* const union = col1.union(col2);
|
|
* console.log(union);
|
|
* // => Collection { 'a' => 1, 'b' => 2, 'c' => 3 }
|
|
* ```
|
|
*/
|
|
public union<T>(other: ReadonlyCollection<K, T>): Collection<K, T | V> {
|
|
const coll = new this.constructor[Symbol.species]<K, T | V>(this);
|
|
|
|
for (const [key, value] of other) {
|
|
if (!coll.has(key)) coll.set(key, value);
|
|
}
|
|
|
|
return coll;
|
|
}
|
|
|
|
/**
|
|
* Returns a new collection containing the items where the key is present in this collection but not the other.
|
|
*
|
|
* @param other - The other Collection to filter against
|
|
* @example
|
|
* ```ts
|
|
* const col1 = new Collection([['a', 1], ['b', 2]]);
|
|
* const col2 = new Collection([['a', 1], ['c', 3]]);
|
|
* console.log(col1.difference(col2));
|
|
* // => Collection { 'b' => 2 }
|
|
* console.log(col2.difference(col1));
|
|
* // => Collection { 'c' => 3 }
|
|
* ```
|
|
*/
|
|
public difference<T>(other: ReadonlyCollection<K, T>): Collection<K, V> {
|
|
const coll = new this.constructor[Symbol.species]<K, V>();
|
|
|
|
for (const [key, value] of this) {
|
|
if (!other.has(key)) coll.set(key, value);
|
|
}
|
|
|
|
return coll;
|
|
}
|
|
|
|
/**
|
|
* Returns a new collection containing only the items where the keys are present in either collection, but not both.
|
|
*
|
|
* @param other - The other Collection to filter against
|
|
* @example
|
|
* ```ts
|
|
* const col1 = new Collection([['a', 1], ['b', 2]]);
|
|
* const col2 = new Collection([['a', 1], ['c', 3]]);
|
|
* const symmetricDifference = col1.symmetricDifference(col2);
|
|
* console.log(col1.symmetricDifference(col2));
|
|
* // => Collection { 'b' => 2, 'c' => 3 }
|
|
* ```
|
|
*/
|
|
public symmetricDifference<T>(other: ReadonlyCollection<K, T>): Collection<K, T | V> {
|
|
const coll = new this.constructor[Symbol.species]<K, T | V>();
|
|
|
|
for (const [key, value] of this) {
|
|
if (!other.has(key)) coll.set(key, value);
|
|
}
|
|
|
|
for (const [key, value] of other) {
|
|
if (!this.has(key)) coll.set(key, value);
|
|
}
|
|
|
|
return coll;
|
|
}
|
|
|
|
/**
|
|
* Merges two Collections together into a new Collection.
|
|
*
|
|
* @param other - The other Collection to merge with
|
|
* @param whenInSelf - Function getting the result if the entry only exists in this Collection
|
|
* @param whenInOther - Function getting the result if the entry only exists in the other Collection
|
|
* @param whenInBoth - Function getting the result if the entry exists in both Collections
|
|
* @example
|
|
* ```ts
|
|
* // Sums up the entries in two collections.
|
|
* coll.merge(
|
|
* other,
|
|
* x => ({ keep: true, value: x }),
|
|
* y => ({ keep: true, value: y }),
|
|
* (x, y) => ({ keep: true, value: x + y }),
|
|
* );
|
|
* ```
|
|
* @example
|
|
* ```ts
|
|
* // Intersects two collections in a left-biased manner.
|
|
* coll.merge(
|
|
* other,
|
|
* x => ({ keep: false }),
|
|
* y => ({ keep: false }),
|
|
* (x, _) => ({ keep: true, value: x }),
|
|
* );
|
|
* ```
|
|
*/
|
|
public merge<T, R>(
|
|
other: ReadonlyCollection<K, T>,
|
|
whenInSelf: (value: V, key: K) => Keep<R>,
|
|
whenInOther: (valueOther: T, key: K) => Keep<R>,
|
|
whenInBoth: (value: V, valueOther: T, key: K) => Keep<R>,
|
|
): Collection<K, R> {
|
|
const coll = new this.constructor[Symbol.species]<K, R>();
|
|
const keys = new Set([...this.keys(), ...other.keys()]);
|
|
|
|
for (const key of keys) {
|
|
const hasInSelf = this.has(key);
|
|
const hasInOther = other.has(key);
|
|
|
|
if (hasInSelf && hasInOther) {
|
|
const result = whenInBoth(this.get(key)!, other.get(key)!, key);
|
|
if (result.keep) coll.set(key, result.value);
|
|
} else if (hasInSelf) {
|
|
const result = whenInSelf(this.get(key)!, key);
|
|
if (result.keep) coll.set(key, result.value);
|
|
} else if (hasInOther) {
|
|
const result = whenInOther(other.get(key)!, key);
|
|
if (result.keep) coll.set(key, result.value);
|
|
}
|
|
}
|
|
|
|
return coll;
|
|
}
|
|
|
|
/**
|
|
* Identical to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toReversed | Array.toReversed()}
|
|
* but returns a Collection instead of an Array.
|
|
*/
|
|
public toReversed() {
|
|
return new this.constructor[Symbol.species](this).reverse();
|
|
}
|
|
|
|
/**
|
|
* The sorted method sorts the items of a collection and returns it.
|
|
* The sort is not necessarily stable in Node 10 or older.
|
|
* The default sort order is according to string Unicode code points.
|
|
*
|
|
* @param compareFunction - Specifies a function that defines the sort order.
|
|
* If omitted, the collection is sorted according to each character's Unicode code point value,
|
|
* according to the string conversion of each element.
|
|
* @example
|
|
* ```ts
|
|
* collection.sorted((userA, userB) => userA.createdTimestamp - userB.createdTimestamp);
|
|
* ```
|
|
*/
|
|
public toSorted(compareFunction: Comparator<K, V> = Collection.defaultSort) {
|
|
return new this.constructor[Symbol.species](this).sort((av, bv, ak, bk) => compareFunction(av, bv, ak, bk));
|
|
}
|
|
|
|
public toJSON() {
|
|
// toJSON is called recursively by JSON.stringify.
|
|
return [...this.entries()];
|
|
}
|
|
|
|
private static defaultSort<V>(firstValue: V, secondValue: V): number {
|
|
return Number(firstValue > secondValue) || Number(firstValue === secondValue) - 1;
|
|
}
|
|
|
|
/**
|
|
* Creates a Collection from a list of entries.
|
|
*
|
|
* @param entries - The list of entries
|
|
* @param combine - Function to combine an existing entry with a new one
|
|
* @example
|
|
* ```ts
|
|
* Collection.combineEntries([["a", 1], ["b", 2], ["a", 2]], (x, y) => x + y);
|
|
* // returns Collection { "a" => 3, "b" => 2 }
|
|
* ```
|
|
*/
|
|
public static combineEntries<K, V>(
|
|
entries: Iterable<[K, V]>,
|
|
combine: (firstValue: V, secondValue: V, key: K) => V,
|
|
): Collection<K, V> {
|
|
const coll = new Collection<K, V>();
|
|
for (const [key, value] of entries) {
|
|
if (coll.has(key)) {
|
|
coll.set(key, combine(coll.get(key)!, value, key));
|
|
} else {
|
|
coll.set(key, value);
|
|
}
|
|
}
|
|
|
|
return coll;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
export type Keep<V> = { keep: false } | { keep: true; value: V };
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
export type Comparator<K, V> = (firstValue: V, secondValue: V, firstKey: K, secondKey: K) => number;
|