calckey/src/prelude/array.ts

72 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-09-05 17:16:08 +00: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 17:28:04 +00:00
2018-09-06 12:31:15 +00:00
export function concat<T>(xss: T[][]): T[] {
return ([] as T[]).concat(...xss);
}
2018-09-05 17:28:04 +00:00
export function intersperse<T>(sep: T, xs: T[]): T[] {
2018-09-06 12:31:15 +00:00
return concat(xs.map(x => [sep, x])).slice(1);
2018-09-05 17:28:04 +00:00
}
2018-09-06 15:02:55 +00:00
export function erase<T>(x: T, xs: T[]): T[] {
return xs.filter(y => x !== y);
}
2018-09-06 15:10:03 +00: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-09 02:01:55 +00:00
}
2018-09-06 15:10:03 +00:00
export function unique<T>(xs: T[]): T[] {
return [...new Set(xs)];
}
2018-09-06 19:21:04 +00:00
export function sum(xs: number[]): number {
return xs.reduce((a, b) => a + b, 0);
}
2018-11-09 04:03:46 +00: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);
}
export function lessThan(xs: number[], ys: number[]): boolean {
for (let i = 0; i < Math.min(xs.length, ys.length); i++) {
if (xs[i] < ys[i]) return true;
if (xs[i] > ys[i]) return false;
}
return xs.length < ys.length;
}
2018-12-02 11:28:22 +00:00
export function takeWhile<T>(f: (x: T) => boolean, xs: T[]): T[] {
const ys = [];
for (const x of xs) {
if (f(x)) {
ys.push(x);
} else {
break;
}
}
return ys;
}