@@ -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 " ) ]
1515pub 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 " ) ]
4141impl < I , const N : usize > Iterator for ArrayChunks < I , N >
4242where
4343 I : Iterator ,
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 " ) ]
9595impl < I , const N : usize > DoubleEndedIterator for ArrayChunks < I , N >
9696where
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 " ) ]
166166impl < 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 " ) ]
169169impl < I , const N : usize > ExactSizeIterator for ArrayChunks < I , N >
170170where
171171 I : ExactSizeIterator ,
0 commit comments