pub trait GetSignedIntOpswhere
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§
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.