pantomime-rs / pantomime

MIT License
5 stars 1 forks source link

streams: Implement FilterMap #72

Closed longshorej closed 4 years ago

longshorej commented 4 years ago

This adds Source::filter_map, Flow::filter_map, and the accompanying implementation.

FilterMap takes a function that both maps and filters by returning an Option<B> when given an A.