pub trait SimdBase8x: SimdBase {
    fn blend<const B7: bool, const B6: bool, const B5: bool, const B4: bool, const B3: bool, const B2: bool, const B1: bool, const B0: bool>(
        &self,
        if_true: Self
    ) -> Self; }
Expand description

A vector containing 8 lanes.

Required Methods

If Bi is true, then that lane will be filled by if_true. Otherwise the lane will be filled from self.

Implementors