[][src]Struct simd_trick::Simd512

#[repr(C)]
pub struct Simd512<TArray>(_);

Methods

impl Simd512<[i8; 64]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[i8; 64]>[src]

pub fn splat(value: i8) -> Self[src]

impl Simd512<[i16; 32]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[i16; 32]>[src]

pub fn splat(value: i16) -> Self[src]

impl Simd512<[i32; 16]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[i32; 16]>[src]

pub fn splat(value: i32) -> Self[src]

impl Simd512<[i64; 8]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[i64; 8]>[src]

pub fn splat(value: i64) -> Self[src]

impl Simd512<[u8; 64]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[u8; 64]>[src]

pub fn splat(value: u8) -> Self[src]

impl Simd512<[u16; 32]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[u16; 32]>[src]

pub fn splat(value: u16) -> Self[src]

impl Simd512<[u32; 16]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[u32; 16]>[src]

pub fn splat(value: u32) -> Self[src]

impl Simd512<[u64; 8]>[src]

pub fn wrapping_add(self, other: Self) -> Self[src]

pub fn saturating_add(self, other: Self) -> Self[src]

pub fn wrapping_sub(self, other: Self) -> Self[src]

pub fn saturating_sub(self, other: Self) -> Self[src]

pub fn count_ones(self) -> Self[src]

pub fn count_zeros(self) -> Self[src]

impl Simd512<[u64; 8]>[src]

pub fn splat(value: u64) -> Self[src]

impl Simd512<[f32; 16]>[src]

pub fn add(self, other: Self) -> Self[src]

pub fn sub(self, other: Self) -> Self[src]

impl Simd512<[f32; 16]>[src]

pub fn splat(value: f32) -> Self[src]

impl Simd512<[f64; 8]>[src]

pub fn add(self, other: Self) -> Self[src]

pub fn sub(self, other: Self) -> Self[src]

impl Simd512<[f64; 8]>[src]

pub fn splat(value: f64) -> Self[src]

Trait Implementations

impl Vector for Simd512<[i8; 64]>[src]

type Element = i8

impl Vector for Simd512<[i16; 32]>[src]

type Element = i16

impl Vector for Simd512<[i32; 16]>[src]

type Element = i32

impl Vector for Simd512<[i64; 8]>[src]

type Element = i64

impl Vector for Simd512<[u8; 64]>[src]

type Element = u8

impl Vector for Simd512<[u16; 32]>[src]

type Element = u16

impl Vector for Simd512<[u32; 16]>[src]

type Element = u32

impl Vector for Simd512<[u64; 8]>[src]

type Element = u64

impl Vector for Simd512<[f32; 16]>[src]

type Element = f32

impl Vector for Simd512<[f64; 8]>[src]

type Element = f64

impl<TArray> DerefMut for Simd512<TArray>[src]

impl Debug for Simd512<[i8; 64]>[src]

impl Debug for Simd512<[i16; 32]>[src]

impl Debug for Simd512<[i32; 16]>[src]

impl Debug for Simd512<[i64; 8]>[src]

impl Debug for Simd512<[u8; 64]>[src]

impl Debug for Simd512<[u16; 32]>[src]

impl Debug for Simd512<[u32; 16]>[src]

impl Debug for Simd512<[u64; 8]>[src]

impl Debug for Simd512<[f32; 16]>[src]

impl Debug for Simd512<[f64; 8]>[src]

impl<TArray> Deref for Simd512<TArray>[src]

type Target = TArray

The resulting type after dereferencing.

impl<TArray: Copy> Copy for Simd512<TArray>[src]

impl From<[i8; 64]> for Simd512<[i8; 64]>[src]

impl From<Simd512<[i8; 64]>> for [i8; 64][src]

impl From<[i16; 32]> for Simd512<[i16; 32]>[src]

impl From<Simd512<[i16; 32]>> for [i16; 32][src]

impl From<[i32; 16]> for Simd512<[i32; 16]>[src]

impl From<Simd512<[i32; 16]>> for [i32; 16][src]

impl From<[i64; 8]> for Simd512<[i64; 8]>[src]

impl From<Simd512<[i64; 8]>> for [i64; 8][src]

impl From<[u8; 64]> for Simd512<[u8; 64]>[src]

impl From<Simd512<[u8; 64]>> for [u8; 64][src]

impl From<[u16; 32]> for Simd512<[u16; 32]>[src]

impl From<Simd512<[u16; 32]>> for [u16; 32][src]

impl From<[u32; 16]> for Simd512<[u32; 16]>[src]

impl From<Simd512<[u32; 16]>> for [u32; 16][src]

impl From<[u64; 8]> for Simd512<[u64; 8]>[src]

impl From<Simd512<[u64; 8]>> for [u64; 8][src]

impl From<[f32; 16]> for Simd512<[f32; 16]>[src]

impl From<Simd512<[f32; 16]>> for [f32; 16][src]

impl From<[f64; 8]> for Simd512<[f64; 8]>[src]

impl From<Simd512<[f64; 8]>> for [f64; 8][src]

impl<TArray: Clone> Clone for Simd512<TArray>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Simd512<[i8; 64]>[src]

impl Default for Simd512<[i16; 32]>[src]

impl Default for Simd512<[i32; 16]>[src]

impl Default for Simd512<[i64; 8]>[src]

impl Default for Simd512<[u8; 64]>[src]

impl Default for Simd512<[u16; 32]>[src]

impl Default for Simd512<[u32; 16]>[src]

impl Default for Simd512<[u64; 8]>[src]

impl Default for Simd512<[f32; 16]>[src]

impl Default for Simd512<[f64; 8]>[src]

Auto Trait Implementations

impl<TArray> Unpin for Simd512<TArray> where
    TArray: Unpin

impl<TArray> Sync for Simd512<TArray> where
    TArray: Sync

impl<TArray> Send for Simd512<TArray> where
    TArray: Send

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]