Remove Fuse from ArrayChunks implementation

It doesn't seem to be used at all.
This commit is contained in:
Maybe Waffle 2022-08-01 18:43:40 +04:00
parent 3102b39daa
commit 37dfb04317

View File

@ -1,5 +1,5 @@
use crate::array;
use crate::iter::{Fuse, FusedIterator, Iterator};
use crate::iter::{FusedIterator, Iterator};
use crate::mem;
use crate::mem::MaybeUninit;
use crate::ops::{ControlFlow, Try};
@ -16,7 +16,7 @@ use crate::ptr;
#[must_use = "iterators are lazy and do nothing unless consumed"]
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
pub struct ArrayChunks<I: Iterator, const N: usize> {
iter: Fuse<I>,
iter: I,
remainder: Option<array::IntoIter<I::Item, N>>,
}
@ -27,7 +27,7 @@ where
#[track_caller]
pub(in crate::iter) fn new(iter: I) -> Self {
assert!(N != 0, "chunk size must be non-zero");
Self { iter: iter.fuse(), remainder: None }
Self { iter, remainder: None }
}
/// Returns an iterator over the remaining elements of the original iterator