You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we should make type FilterMapOk<Iter> = FilterMapSpecialCase<Iter, FilterMapSpecialCaseFnOk> and type Positions = FilterMapSpecialCase<Enumerate<Iter>, FilterMapSpecialCasePositions>.
Would enforce consitency for DoubleEndedIterator, fusedness, etc.
The text was updated successfully, but these errors were encountered:
Wow... that's bold, intriguing and definitely interesting.
I'm curious how it would impact benchmarks (for Positions mainly, since FilterMapOk might end up deprecated with #844).
We have
FilterMapOk
and we havePositions
.I think we should make
type FilterMapOk<Iter> = FilterMapSpecialCase<Iter, FilterMapSpecialCaseFnOk>
andtype Positions = FilterMapSpecialCase<Enumerate<Iter>, FilterMapSpecialCasePositions>
.Would enforce consitency for
DoubleEndedIterator
, fusedness, etc.The text was updated successfully, but these errors were encountered: