@@ -11,7 +11,7 @@ use crate::ops::{ControlFlow, NeverShortCircuit, Try};
11
11
/// method on [`Iterator`]. See its documentation for more.
12
12
#[ derive( Debug , Clone ) ]
13
13
#[ 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 " ) ]
15
15
pub struct ArrayChunks < I : Iterator , const N : usize > {
16
16
iter : I ,
17
17
remainder : Option < array:: IntoIter < I :: Item , N > > ,
@@ -30,14 +30,14 @@ where
30
30
/// Returns an iterator over the remaining elements of the original iterator
31
31
/// that are not going to be returned by this iterator. The returned
32
32
/// 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 " ) ]
34
34
#[ inline]
35
35
pub fn into_remainder ( self ) -> Option < array:: IntoIter < I :: Item , N > > {
36
36
self . remainder
37
37
}
38
38
}
39
39
40
- #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "none " ) ]
40
+ #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "100450 " ) ]
41
41
impl < I , const N : usize > Iterator for ArrayChunks < I , N >
42
42
where
43
43
I : Iterator ,
91
91
}
92
92
}
93
93
94
- #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "none " ) ]
94
+ #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "100450 " ) ]
95
95
impl < I , const N : usize > DoubleEndedIterator for ArrayChunks < I , N >
96
96
where
97
97
I : DoubleEndedIterator + ExactSizeIterator ,
@@ -162,10 +162,10 @@ where
162
162
}
163
163
}
164
164
165
- #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "none " ) ]
165
+ #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "100450 " ) ]
166
166
impl < I , const N : usize > FusedIterator for ArrayChunks < I , N > where I : FusedIterator { }
167
167
168
- #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "none " ) ]
168
+ #[ unstable( feature = "iter_array_chunks" , reason = "recently added" , issue = "100450 " ) ]
169
169
impl < I , const N : usize > ExactSizeIterator for ArrayChunks < I , N >
170
170
where
171
171
I : ExactSizeIterator ,
0 commit comments