Type Challenges Judge
Problems
Progress
Tuple Filter
Implement a type FilterOut<T, F> that filters out items of the given type F from the tuple T.
FilterOut<T, F>
F
T
For example,
type Filtered = FilterOut<[1, 2, null, 3], null> // [1, 2, 3]