Sharkey/src/prelude/array.ts

8 lines
187 B
TypeScript
Raw Normal View History

2018-09-05 20:16:08 +03: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);
}