-
Notifications
You must be signed in to change notification settings - Fork 92
Document alternatives to Mask<T, LANES> that guarantee layout. Fixes #332 #333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
6c926f4
9805f7c
b44a0de
c4e2ae5
84bc197
ecb9703
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,6 +88,10 @@ impl_element! { isize } | |
/// The layout of this type is unspecified, and may change between platforms | ||
/// and/or Rust versions, and code should not assume that it is equivalent to | ||
/// `[T; LANES]`. | ||
/// | ||
/// For a type with layout guaranteed equivalent to `[T; LANES]`, use | ||
/// `SIMD<T, LANES>`. For a type with layout guaranteed to use 1 bit per | ||
/// lane (padded up to full bytes), use `LANES::BitMask`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So, the exact number of bytes is an implementation detail (we've used There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The type is actually |
||
#[repr(transparent)] | ||
pub struct Mask<T, const LANES: usize>(mask_impl::Mask<T, LANES>) | ||
where | ||
|
Uh oh!
There was an error while loading. Please reload this page.