pub const fn filter_map<Func, In, Out, Next>( func: Func, next: Next, ) -> FilterMap<Next, Func>where Func: FnMut(In) -> Option<Out>,
Creates a FilterMap push that filters and maps items in one step.
FilterMap