File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -3187,12 +3187,13 @@ macro_rules! iterator {
3187
3187
// manual unrolling is needed when there are conditional exits from the loop
3188
3188
let mut accum = init;
3189
3189
unsafe {
3190
- while len!( self ) >= 4 {
3191
- accum = f( accum, next_unchecked!( self ) ) ?;
3192
- accum = f( accum, next_unchecked!( self ) ) ?;
3193
- accum = f( accum, next_unchecked!( self ) ) ?;
3194
- accum = f( accum, next_unchecked!( self ) ) ?;
3195
- }
3190
+ // REMOVED AS AN EXPERIMENT; DO NOT MERGE
3191
+ // while len!(self) >= 4 {
3192
+ // accum = f(accum, next_unchecked!(self))?;
3193
+ // accum = f(accum, next_unchecked!(self))?;
3194
+ // accum = f(accum, next_unchecked!(self))?;
3195
+ // accum = f(accum, next_unchecked!(self))?;
3196
+ // }
3196
3197
while !is_empty!( self ) {
3197
3198
accum = f( accum, next_unchecked!( self ) ) ?;
3198
3199
}
You can’t perform that action at this time.
0 commit comments