@tempots/std

FilterTuple type

Filters out elements from a tuple that are equal to the specified type.

Signature:

export type FilterTuple<T extends unknown[], N> = T extends [] ? [] : T extends [infer H, ...infer R] ? N extends H ? FilterTuple<R, N> : [H, ...FilterTuple<R, N>] : T;

References: FilterTuple