2018-09-05 12:16:08 -05:00
|
|
|
export function countIf<T>(f: (x: T) => boolean, xs: T[]): number {
|
|
|
|
return xs.filter(f).length;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function count<T>(x: T, xs: T[]): number {
|
|
|
|
return countIf(y => x === y, xs);
|
|
|
|
}
|
2018-09-05 12:28:04 -05:00
|
|
|
|
2018-09-06 07:31:15 -05:00
|
|
|
export function concat<T>(xss: T[][]): T[] {
|
|
|
|
return ([] as T[]).concat(...xss);
|
|
|
|
}
|
|
|
|
|
2018-09-05 12:28:04 -05:00
|
|
|
export function intersperse<T>(sep: T, xs: T[]): T[] {
|
2018-09-06 07:31:15 -05:00
|
|
|
return concat(xs.map(x => [sep, x])).slice(1);
|
2018-09-05 12:28:04 -05:00
|
|
|
}
|
2018-09-06 10:02:55 -05:00
|
|
|
|
|
|
|
export function erase<T>(x: T, xs: T[]): T[] {
|
|
|
|
return xs.filter(y => x !== y);
|
|
|
|
}
|
2018-09-06 10:10:03 -05:00
|
|
|
|
2018-11-08 23:14:53 -06:00
|
|
|
/**
|
|
|
|
* Finds the array of all elements in the first array not contained in the second array.
|
|
|
|
* The order of result values are determined by the first array.
|
|
|
|
*/
|
|
|
|
export function difference<T>(includes: T[], excludes: T[]): T[] {
|
|
|
|
return includes.filter(x => !excludes.includes(x));
|
2018-11-08 20:01:55 -06:00
|
|
|
}
|
|
|
|
|
2018-09-06 10:10:03 -05:00
|
|
|
export function unique<T>(xs: T[]): T[] {
|
|
|
|
return [...new Set(xs)];
|
|
|
|
}
|
2018-09-06 14:21:04 -05:00
|
|
|
|
|
|
|
export function sum(xs: number[]): number {
|
|
|
|
return xs.reduce((a, b) => a + b, 0);
|
|
|
|
}
|
2018-11-08 22:03:46 -06:00
|
|
|
|
|
|
|
export function groupBy<T>(f: (x: T, y: T) => boolean, xs: T[]): T[][] {
|
|
|
|
const groups = [] as T[][];
|
|
|
|
for (const x of xs) {
|
|
|
|
if (groups.length !== 0 && f(groups[groups.length - 1][0], x)) {
|
|
|
|
groups[groups.length - 1].push(x);
|
|
|
|
} else {
|
|
|
|
groups.push([x]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return groups;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function groupOn<T, S>(f: (x: T) => S, xs: T[]): T[][] {
|
|
|
|
return groupBy((a, b) => f(a) === f(b), xs);
|
|
|
|
}
|