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

A vector containing 4 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