/** * Returns an array of size `n` filled with 0 * 20 times faster than * ``` * Array.from({length: n}, () => 0) * ``` * - Array.from: 40ms / 200_000 elements * - This fn: 2.2ms / 200_000 elements */ export declare function newZeroedArray(n: number): number[]; export declare function newZeroedBigIntArray(n: number): bigint[]; export declare function newFilledArray(n: number, val: T): T[]; /** * Returns an array with all values not in the participants array. * - All elements in values must be unique * - Does NOT require sorting */ export declare function getUnparticipantValues(participants: T[], values: T[]): T[]; //# sourceMappingURL=array.d.ts.map