pub trait SIMDSelect<V: SIMDVector>: SIMDMask {
// Required method
fn select(self, x: V, y: V) -> V;
}Expand description
A vectorized “if else”.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".