pub trait SimdSelector {
// Required methods
fn select(&self) -> &dyn SimdOps;
fn select_ext(&self) -> &dyn SimdOpsExt;
}Expand description
Trait for selecting SIMD implementation at runtime.
Required Methods§
Sourcefn select_ext(&self) -> &dyn SimdOpsExt
fn select_ext(&self) -> &dyn SimdOpsExt
Get the best available extended SIMD implementation.