Expand description
Theory of fused iterators.
Functions§
- check_
fused_ iterator - filter_
map_ then_ decomposable Iterator::filter_map
withbool::then
can be decomposed intoIterator::filter
andIterator::map
.- filter_
next_ is_ find Iterator::filter
thenIterator::next
is equivalent toIterator::find
.- next_
map_ commutes - For all
f:
FnMut
,Iterator::next
andIterator::map
(·, f)
commutes.