mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-17 07:28:45 +00:00
Bump Rust
This commit is contained in:
@@ -6,7 +6,6 @@ const SIZE: usize = 100_000_000;
|
||||
|
||||
fn sequential() {
|
||||
let _v = (0..SIZE)
|
||||
.into_iter()
|
||||
.filter_map(|x| if x % 2 == 0 { Some(x * 3) } else { None })
|
||||
.collect::<Vec<_>>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user