Closed
Description
in the rust docs https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.filter_map
it says why is filter_map not equal to filter().map()
this makes no sense
it should ask
why is filter_map not equal to map().filter().
also would be nice to explain that filter_map is is basically map().filter(is_some).map(unwrap) might make it easier to grasp.