pub trait Filter: ListFn {
// Provided method
fn filter<F: FilterFn<Input = Self::Item>>(
self,
f: F
) -> FlatMapList<Self, FilterWrap<F>> { ... }
}
pub trait Filter: ListFn {
// Provided method
fn filter<F: FilterFn<Input = Self::Item>>(
self,
f: F
) -> FlatMapList<Self, FilterWrap<F>> { ... }
}