pub trait ToBitMask: Sealed {
type BitMask;
// Required methods
fn to_bitmask(self) -> Self::BitMask;
fn from_bitmask(bitmask: Self::BitMask) -> Self;
}
🔬This is a nightly-only experimental API. (
portable_simd
#86656)Expand description
将掩码转换为整数位掩码和从整数位掩码转换。
位掩码的每一位对应一个掩码 lane,从 LSB 开始。
Required Associated Types§
Required Methods§
sourcefn to_bitmask(self) -> Self::BitMask
fn to_bitmask(self) -> Self::BitMask
🔬This is a nightly-only experimental API. (
portable_simd
#86656)将掩码转换为位掩码。
sourcefn from_bitmask(bitmask: Self::BitMask) -> Self
fn from_bitmask(bitmask: Self::BitMask) -> Self
🔬This is a nightly-only experimental API. (
portable_simd
#86656)将位掩码转换为掩码。