GetSignedIntOps

Trait GetSignedIntOps 

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

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

This is a specialization of GetNumOps for signed integer element types.

Required Methods§

Source

fn signed_int_ops<I: Isa>( isa: I, ) -> impl SignedIntOps<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 GetSignedIntOps for i8

Source§

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

Source§

impl GetSignedIntOps for i16

Source§

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

Source§

impl GetSignedIntOps for i32

Source§

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

Implementors§