Skip to content

Commit 5fbcde1

Browse files
committed
fill-in tracking issue for feature(iter_array_chunks)
1 parent eb6b729 commit 5fbcde1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

library/core/src/iter/adapters/array_chunks.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::ops::{ControlFlow, NeverShortCircuit, Try};
1111
/// method on [`Iterator`]. See its documentation for more.
1212
#[derive(Debug, Clone)]
1313
#[must_use = "iterators are lazy and do nothing unless consumed"]
14-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
14+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
1515
pub struct ArrayChunks<I: Iterator, const N: usize> {
1616
iter: I,
1717
remainder: Option<array::IntoIter<I::Item, N>>,
@@ -30,14 +30,14 @@ where
3030
/// Returns an iterator over the remaining elements of the original iterator
3131
/// that are not going to be returned by this iterator. The returned
3232
/// iterator will yield at most `N-1` elements.
33-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
33+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
3434
#[inline]
3535
pub fn into_remainder(self) -> Option<array::IntoIter<I::Item, N>> {
3636
self.remainder
3737
}
3838
}
3939

40-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
40+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
4141
impl<I, const N: usize> Iterator for ArrayChunks<I, N>
4242
where
4343
I: Iterator,
@@ -91,7 +91,7 @@ where
9191
}
9292
}
9393

94-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
94+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
9595
impl<I, const N: usize> DoubleEndedIterator for ArrayChunks<I, N>
9696
where
9797
I: DoubleEndedIterator + ExactSizeIterator,
@@ -162,10 +162,10 @@ where
162162
}
163163
}
164164

165-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
165+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
166166
impl<I, const N: usize> FusedIterator for ArrayChunks<I, N> where I: FusedIterator {}
167167

168-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
168+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
169169
impl<I, const N: usize> ExactSizeIterator for ArrayChunks<I, N>
170170
where
171171
I: ExactSizeIterator,

library/core/src/iter/adapters/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub use self::{
3333
scan::Scan, skip::Skip, skip_while::SkipWhile, take::Take, take_while::TakeWhile, zip::Zip,
3434
};
3535

36-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
36+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
3737
pub use self::array_chunks::ArrayChunks;
3838

3939
#[unstable(feature = "std_internals", issue = "none")]

library/core/src/iter/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ pub use self::traits::{
398398

399399
#[stable(feature = "iter_zip", since = "1.59.0")]
400400
pub use self::adapters::zip;
401-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
401+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
402402
pub use self::adapters::ArrayChunks;
403403
#[unstable(feature = "std_internals", issue = "none")]
404404
pub use self::adapters::ByRefSized;

library/core/src/iter/traits/iterator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3351,7 +3351,7 @@ pub trait Iterator {
33513351
/// }
33523352
/// ```
33533353
#[track_caller]
3354-
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "none")]
3354+
#[unstable(feature = "iter_array_chunks", reason = "recently added", issue = "100450")]
33553355
fn array_chunks<const N: usize>(self) -> ArrayChunks<Self, N>
33563356
where
33573357
Self: Sized,

0 commit comments

Comments
 (0)