Add a *small* blurb to Mask that is likely unobjectionable

This commit is contained in:
Sean Stangl 2022-04-03 16:22:31 -06:00
parent 21b070ce43
commit 8cd9325e20

View File

@ -77,6 +77,8 @@ impl_element! { isize }
/// A SIMD vector mask for `LANES` elements of width specified by `Element`.
///
/// Masks represent boolean inclusion/exclusion on a per-lane basis.
///
/// The layout of this type is unspecified.
#[repr(transparent)]
pub struct Mask<T, const LANES: usize>(mask_impl::Mask<T, LANES>)