We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8884771 commit ec2e4baCopy full SHA for ec2e4ba
src/libcore/benches/iter.rs
@@ -185,13 +185,13 @@ bench_sums! {
185
bench_sums! {
186
bench_filter_sum,
187
bench_filter_ref_sum,
188
- (0i64..1000000).filter(|x| x % 2 == 0)
+ (0i64..1000000).filter(|x| x % 3 == 0)
189
}
190
191
192
bench_filter_chain_sum,
193
bench_filter_chain_ref_sum,
194
- (0i64..1000000).chain(0..1000000).filter(|x| x % 2 == 0)
+ (0i64..1000000).chain(0..1000000).filter(|x| x % 3 == 0)
195
196
197
0 commit comments