GetFloatOps

Trait GetFloatOps 

Source
pub trait GetFloatOps
where Self: GetSimd,
{ // Required method fn float_ops<I: Isa>(isa: I) -> impl FloatOps<Self, Simd = Self::Simd<I>>; }
Expand description

Get the FloatOps implementation from an Isa for a given element type.

This is a specialization of GetNumOps for float element types.

Required Methods§

Source

fn float_ops<I: Isa>(isa: I) -> impl FloatOps<Self, Simd = Self::Simd<I>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl GetFloatOps for f32

Source§

fn float_ops<I: Isa>( isa: I, ) -> impl FloatOps<Self, Simd = <Self as GetSimd>::Simd<I>>

Implementors§