egirlskey/src/prelude/array.ts
2018-09-06 02:16:08 +09:00

7 lines
187 B
TypeScript

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);
}