Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPopular repositories
-
-
-
-
-
-
Forked from srijs/rust-crc32fast
Fast, SIMD-accelerated CRC32 (IEEE) checksum computation in Rust
Rust
154 contributions in the last year
Activity overview
Contribution activity
December 2020
Created 3 commits in 1 repository
Created a pull request in rust-lang/rust that received 5 comments
Replace simple `if let` constructs with Option::map
Replaces a few constructs of the form
if let Some(x) = var { Some(...)
} else { None
}
with calls to Option::map.
@rustbot modify labels +C-cleanu…