polars_arrow::types::simd

Trait Simd

Source
pub trait Simd: NativeType {
    type Simd: NativeSimd<Native = Self>;
}
Expand description

Trait implemented by some NativeType that have a SIMD representation.

Required Associated Types§

Source

type Simd: NativeSimd<Native = Self>

The SIMD type associated with this trait. This type supports SIMD operations

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 Simd for f32

Source§

impl Simd for f64

Source§

impl Simd for i8

Source§

impl Simd for i16

Source§

impl Simd for i32

Source§

impl Simd for i64

Source§

impl Simd for i128

Source§

impl Simd for u8

Source§

impl Simd for u16

Source§

impl Simd for u32

Source§

impl Simd for u64

Implementors§