Trait list_fn::Filter

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

Provided Methods§

source

fn filter<F: FilterFn<Input = Self::Item>>( self, f: F ) -> FlatMapList<Self, FilterWrap<F>>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L: ListFn> Filter for L