1
1
//! Defines the `IntoIter` owned iterator for arrays.
2
2
3
- use super :: LengthAtMost32 ;
4
3
use crate :: {
5
4
fmt,
6
5
iter:: { ExactSizeIterator , FusedIterator , TrustedLen } ,
@@ -13,10 +12,7 @@ use crate::{
13
12
///
14
13
/// [array]: ../../std/primitive.array.html
15
14
#[ unstable( feature = "array_value_iter" , issue = "65798" ) ]
16
- pub struct IntoIter < T , const N : usize >
17
- where
18
- [ T ; N ] : LengthAtMost32 ,
19
- {
15
+ pub struct IntoIter < T , const N : usize > {
20
16
/// This is the array we are iterating over.
21
17
///
22
18
/// Elements with index `i` where `alive.start <= i < alive.end` have not
39
35
alive : Range < usize > ,
40
36
}
41
37
42
- impl < T , const N : usize > IntoIter < T , N >
43
- where
44
- [ T ; N ] : LengthAtMost32 ,
45
- {
38
+ impl < T , const N : usize > IntoIter < T , N > {
46
39
/// Creates a new iterator over the given `array`.
47
40
///
48
41
/// *Note*: this method might never get stabilized and/or removed in the
99
92
}
100
93
101
94
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
102
- impl < T , const N : usize > Iterator for IntoIter < T , N >
103
- where
104
- [ T ; N ] : LengthAtMost32 ,
105
- {
95
+ impl < T , const N : usize > Iterator for IntoIter < T , N > {
106
96
type Item = T ;
107
97
fn next ( & mut self ) -> Option < Self :: Item > {
108
98
if self . alive . start == self . alive . end {
@@ -146,10 +136,7 @@ where
146
136
}
147
137
148
138
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
149
- impl < T , const N : usize > DoubleEndedIterator for IntoIter < T , N >
150
- where
151
- [ T ; N ] : LengthAtMost32 ,
152
- {
139
+ impl < T , const N : usize > DoubleEndedIterator for IntoIter < T , N > {
153
140
fn next_back ( & mut self ) -> Option < Self :: Item > {
154
141
if self . alive . start == self . alive . end {
155
142
return None ;
@@ -182,10 +169,7 @@ where
182
169
}
183
170
184
171
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
185
- impl < T , const N : usize > Drop for IntoIter < T , N >
186
- where
187
- [ T ; N ] : LengthAtMost32 ,
188
- {
172
+ impl < T , const N : usize > Drop for IntoIter < T , N > {
189
173
fn drop ( & mut self ) {
190
174
// SAFETY: This is safe: `as_mut_slice` returns exactly the sub-slice
191
175
// of elements that have not been moved out yet and that remain
@@ -195,10 +179,7 @@ where
195
179
}
196
180
197
181
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
198
- impl < T , const N : usize > ExactSizeIterator for IntoIter < T , N >
199
- where
200
- [ T ; N ] : LengthAtMost32 ,
201
- {
182
+ impl < T , const N : usize > ExactSizeIterator for IntoIter < T , N > {
202
183
fn len ( & self ) -> usize {
203
184
// Will never underflow due to the invariant `alive.start <=
204
185
// alive.end`.
@@ -210,20 +191,17 @@ where
210
191
}
211
192
212
193
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
213
- impl < T , const N : usize > FusedIterator for IntoIter < T , N > where [ T ; N ] : LengthAtMost32 { }
194
+ impl < T , const N : usize > FusedIterator for IntoIter < T , N > { }
214
195
215
196
// The iterator indeed reports the correct length. The number of "alive"
216
197
// elements (that will still be yielded) is the length of the range `alive`.
217
198
// This range is decremented in length in either `next` or `next_back`. It is
218
199
// always decremented by 1 in those methods, but only if `Some(_)` is returned.
219
200
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
220
- unsafe impl < T , const N : usize > TrustedLen for IntoIter < T , N > where [ T ; N ] : LengthAtMost32 { }
201
+ unsafe impl < T , const N : usize > TrustedLen for IntoIter < T , N > { }
221
202
222
203
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
223
- impl < T : Clone , const N : usize > Clone for IntoIter < T , N >
224
- where
225
- [ T ; N ] : LengthAtMost32 ,
226
- {
204
+ impl < T : Clone , const N : usize > Clone for IntoIter < T , N > {
227
205
fn clone ( & self ) -> Self {
228
206
// SAFETY: each point of unsafety is documented inside the unsafe block
229
207
unsafe {
@@ -249,10 +227,7 @@ where
249
227
}
250
228
251
229
#[ stable( feature = "array_value_iter_impls" , since = "1.40.0" ) ]
252
- impl < T : fmt:: Debug , const N : usize > fmt:: Debug for IntoIter < T , N >
253
- where
254
- [ T ; N ] : LengthAtMost32 ,
255
- {
230
+ impl < T : fmt:: Debug , const N : usize > fmt:: Debug for IntoIter < T , N > {
256
231
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
257
232
// Only print the elements that were not yielded yet: we cannot
258
233
// access the yielded elements anymore.
0 commit comments