mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
df5f98513b
Don't fuse in `MapWindows` cc https://github.com/rust-lang/rust/issues/87155 Fusing makes the iterator larger, slower, more complicated, and less useful. Users who need fusing behavior can always use `.fuse()`, but there is no way to get non-fusing behavior from the fused version. @rustbot label A-iterators