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 upPinned
358 contributions in the last year
Activity overview
Contribution activity
December 2020
Created 1 commit in 1 repository
Created a pull request in rust-lang/stdsimd that received 1 comment
[TEST ONLY] I am bors
Reviewed 1 pull request in 1 repository
rust-lang/rustup 1 pull request
Created an issue in rust-lang/stdsimd that received 3 comments
Bounding const generic bitmasks
You can do this just fine:
#[repr(simd)]
pub struct SimdU8<const LANES: usize>([u8; LANES]);
But to make a bitmask you need to do this:
#[repr(si…

