Struct simba::simd::Simd

source ·
#[repr(transparent)]
pub struct Simd<N>(pub N);
Expand description

An Simd structure that implements all the relevant traits from num an simba.

This is needed to overcome the orphan rules.

Tuple Fields§

§0: N

Implementations§

source§

impl Simd<f32x2>

source

pub fn new(_0: f32, _1: f32) -> Self

source§

impl Simd<f32x2>

source

pub fn from_slice_unaligned(slice: &[f32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<f32x4>

source

pub fn new(_0: f32, _1: f32, _2: f32, _3: f32) -> Self

source§

impl Simd<f32x4>

source

pub fn from_slice_unaligned(slice: &[f32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<f32x8>

source

pub fn new( _0: f32, _1: f32, _2: f32, _3: f32, _4: f32, _5: f32, _6: f32, _7: f32 ) -> Self

source§

impl Simd<f32x8>

source

pub fn from_slice_unaligned(slice: &[f32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<f32x16>

source

pub fn new( _0: f32, _1: f32, _2: f32, _3: f32, _4: f32, _5: f32, _6: f32, _7: f32, _8: f32, _9: f32, _10: f32, _11: f32, _12: f32, _13: f32, _14: f32, _15: f32 ) -> Self

source§

impl Simd<f32x16>

source

pub fn from_slice_unaligned(slice: &[f32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<f64x2>

source

pub fn new(_0: f64, _1: f64) -> Self

source§

impl Simd<f64x2>

source

pub fn from_slice_unaligned(slice: &[f64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<f64x4>

source

pub fn new(_0: f64, _1: f64, _2: f64, _3: f64) -> Self

source§

impl Simd<f64x4>

source

pub fn from_slice_unaligned(slice: &[f64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<f64x8>

source

pub fn new( _0: f64, _1: f64, _2: f64, _3: f64, _4: f64, _5: f64, _6: f64, _7: f64 ) -> Self

source§

impl Simd<f64x8>

source

pub fn from_slice_unaligned(slice: &[f64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i128x1>

source

pub fn new(_0: i128) -> Self

source§

impl Simd<i128x1>

source

pub fn from_slice_unaligned(slice: &[i128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i128x2>

source

pub fn new(_0: i128, _1: i128) -> Self

source§

impl Simd<i128x2>

source

pub fn from_slice_unaligned(slice: &[i128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i128x4>

source

pub fn new(_0: i128, _1: i128, _2: i128, _3: i128) -> Self

source§

impl Simd<i128x4>

source

pub fn from_slice_unaligned(slice: &[i128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i16x2>

source

pub fn new(_0: i16, _1: i16) -> Self

source§

impl Simd<i16x2>

source

pub fn from_slice_unaligned(slice: &[i16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i16x4>

source

pub fn new(_0: i16, _1: i16, _2: i16, _3: i16) -> Self

source§

impl Simd<i16x4>

source

pub fn from_slice_unaligned(slice: &[i16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i16x8>

source

pub fn new( _0: i16, _1: i16, _2: i16, _3: i16, _4: i16, _5: i16, _6: i16, _7: i16 ) -> Self

source§

impl Simd<i16x8>

source

pub fn from_slice_unaligned(slice: &[i16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i16x16>

source

pub fn new( _0: i16, _1: i16, _2: i16, _3: i16, _4: i16, _5: i16, _6: i16, _7: i16, _8: i16, _9: i16, _10: i16, _11: i16, _12: i16, _13: i16, _14: i16, _15: i16 ) -> Self

source§

impl Simd<i16x16>

source

pub fn from_slice_unaligned(slice: &[i16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i16x32>

source

pub fn new( _0: i16, _1: i16, _2: i16, _3: i16, _4: i16, _5: i16, _6: i16, _7: i16, _8: i16, _9: i16, _10: i16, _11: i16, _12: i16, _13: i16, _14: i16, _15: i16, _16: i16, _17: i16, _18: i16, _19: i16, _20: i16, _21: i16, _22: i16, _23: i16, _24: i16, _25: i16, _26: i16, _27: i16, _28: i16, _29: i16, _30: i16, _31: i16 ) -> Self

source§

impl Simd<i16x32>

source

pub fn from_slice_unaligned(slice: &[i16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i32x2>

source

pub fn new(_0: i32, _1: i32) -> Self

source§

impl Simd<i32x2>

source

pub fn from_slice_unaligned(slice: &[i32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i32x4>

source

pub fn new(_0: i32, _1: i32, _2: i32, _3: i32) -> Self

source§

impl Simd<i32x4>

source

pub fn from_slice_unaligned(slice: &[i32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i32x8>

source

pub fn new( _0: i32, _1: i32, _2: i32, _3: i32, _4: i32, _5: i32, _6: i32, _7: i32 ) -> Self

source§

impl Simd<i32x8>

source

pub fn from_slice_unaligned(slice: &[i32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i32x16>

source

pub fn new( _0: i32, _1: i32, _2: i32, _3: i32, _4: i32, _5: i32, _6: i32, _7: i32, _8: i32, _9: i32, _10: i32, _11: i32, _12: i32, _13: i32, _14: i32, _15: i32 ) -> Self

source§

impl Simd<i32x16>

source

pub fn from_slice_unaligned(slice: &[i32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i64x2>

source

pub fn new(_0: i64, _1: i64) -> Self

source§

impl Simd<i64x2>

source

pub fn from_slice_unaligned(slice: &[i64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i64x4>

source

pub fn new(_0: i64, _1: i64, _2: i64, _3: i64) -> Self

source§

impl Simd<i64x4>

source

pub fn from_slice_unaligned(slice: &[i64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i64x8>

source

pub fn new( _0: i64, _1: i64, _2: i64, _3: i64, _4: i64, _5: i64, _6: i64, _7: i64 ) -> Self

source§

impl Simd<i64x8>

source

pub fn from_slice_unaligned(slice: &[i64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i8x2>

source

pub fn new(_0: i8, _1: i8) -> Self

source§

impl Simd<i8x2>

source

pub fn from_slice_unaligned(slice: &[i8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i8x4>

source

pub fn new(_0: i8, _1: i8, _2: i8, _3: i8) -> Self

source§

impl Simd<i8x4>

source

pub fn from_slice_unaligned(slice: &[i8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i8x8>

source

pub fn new( _0: i8, _1: i8, _2: i8, _3: i8, _4: i8, _5: i8, _6: i8, _7: i8 ) -> Self

source§

impl Simd<i8x8>

source

pub fn from_slice_unaligned(slice: &[i8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i8x16>

source

pub fn new( _0: i8, _1: i8, _2: i8, _3: i8, _4: i8, _5: i8, _6: i8, _7: i8, _8: i8, _9: i8, _10: i8, _11: i8, _12: i8, _13: i8, _14: i8, _15: i8 ) -> Self

source§

impl Simd<i8x16>

source

pub fn from_slice_unaligned(slice: &[i8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i8x32>

source

pub fn new( _0: i8, _1: i8, _2: i8, _3: i8, _4: i8, _5: i8, _6: i8, _7: i8, _8: i8, _9: i8, _10: i8, _11: i8, _12: i8, _13: i8, _14: i8, _15: i8, _16: i8, _17: i8, _18: i8, _19: i8, _20: i8, _21: i8, _22: i8, _23: i8, _24: i8, _25: i8, _26: i8, _27: i8, _28: i8, _29: i8, _30: i8, _31: i8 ) -> Self

source§

impl Simd<i8x32>

source

pub fn from_slice_unaligned(slice: &[i8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<i8x64>

source

pub fn new( _0: i8, _1: i8, _2: i8, _3: i8, _4: i8, _5: i8, _6: i8, _7: i8, _8: i8, _9: i8, _10: i8, _11: i8, _12: i8, _13: i8, _14: i8, _15: i8, _16: i8, _17: i8, _18: i8, _19: i8, _20: i8, _21: i8, _22: i8, _23: i8, _24: i8, _25: i8, _26: i8, _27: i8, _28: i8, _29: i8, _30: i8, _31: i8, _32: i8, _33: i8, _34: i8, _35: i8, _36: i8, _37: i8, _38: i8, _39: i8, _40: i8, _41: i8, _42: i8, _43: i8, _44: i8, _45: i8, _46: i8, _47: i8, _48: i8, _49: i8, _50: i8, _51: i8, _52: i8, _53: i8, _54: i8, _55: i8, _56: i8, _57: i8, _58: i8, _59: i8, _60: i8, _61: i8, _62: i8, _63: i8 ) -> Self

source§

impl Simd<i8x64>

source

pub fn from_slice_unaligned(slice: &[i8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<isizex2>

source

pub fn new(_0: isize, _1: isize) -> Self

source§

impl Simd<isizex2>

source

pub fn from_slice_unaligned(slice: &[isize]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<isizex4>

source

pub fn new(_0: isize, _1: isize, _2: isize, _3: isize) -> Self

source§

impl Simd<isizex4>

source

pub fn from_slice_unaligned(slice: &[isize]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<isizex8>

source

pub fn new( _0: isize, _1: isize, _2: isize, _3: isize, _4: isize, _5: isize, _6: isize, _7: isize ) -> Self

source§

impl Simd<isizex8>

source

pub fn from_slice_unaligned(slice: &[isize]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u128x1>

source

pub fn new(_0: u128) -> Self

source§

impl Simd<u128x1>

source

pub fn from_slice_unaligned(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u128x2>

source

pub fn new(_0: u128, _1: u128) -> Self

source§

impl Simd<u128x2>

source

pub fn from_slice_unaligned(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u128x4>

source

pub fn new(_0: u128, _1: u128, _2: u128, _3: u128) -> Self

source§

impl Simd<u128x4>

source

pub fn from_slice_unaligned(slice: &[u128]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u16x2>

source

pub fn new(_0: u16, _1: u16) -> Self

source§

impl Simd<u16x2>

source

pub fn from_slice_unaligned(slice: &[u16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u16x4>

source

pub fn new(_0: u16, _1: u16, _2: u16, _3: u16) -> Self

source§

impl Simd<u16x4>

source

pub fn from_slice_unaligned(slice: &[u16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u16x8>

source

pub fn new( _0: u16, _1: u16, _2: u16, _3: u16, _4: u16, _5: u16, _6: u16, _7: u16 ) -> Self

source§

impl Simd<u16x8>

source

pub fn from_slice_unaligned(slice: &[u16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u16x16>

source

pub fn new( _0: u16, _1: u16, _2: u16, _3: u16, _4: u16, _5: u16, _6: u16, _7: u16, _8: u16, _9: u16, _10: u16, _11: u16, _12: u16, _13: u16, _14: u16, _15: u16 ) -> Self

source§

impl Simd<u16x16>

source

pub fn from_slice_unaligned(slice: &[u16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u16x32>

source

pub fn new( _0: u16, _1: u16, _2: u16, _3: u16, _4: u16, _5: u16, _6: u16, _7: u16, _8: u16, _9: u16, _10: u16, _11: u16, _12: u16, _13: u16, _14: u16, _15: u16, _16: u16, _17: u16, _18: u16, _19: u16, _20: u16, _21: u16, _22: u16, _23: u16, _24: u16, _25: u16, _26: u16, _27: u16, _28: u16, _29: u16, _30: u16, _31: u16 ) -> Self

source§

impl Simd<u16x32>

source

pub fn from_slice_unaligned(slice: &[u16]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u32x2>

source

pub fn new(_0: u32, _1: u32) -> Self

source§

impl Simd<u32x2>

source

pub fn from_slice_unaligned(slice: &[u32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u32x4>

source

pub fn new(_0: u32, _1: u32, _2: u32, _3: u32) -> Self

source§

impl Simd<u32x4>

source

pub fn from_slice_unaligned(slice: &[u32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u32x8>

source

pub fn new( _0: u32, _1: u32, _2: u32, _3: u32, _4: u32, _5: u32, _6: u32, _7: u32 ) -> Self

source§

impl Simd<u32x8>

source

pub fn from_slice_unaligned(slice: &[u32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u32x16>

source

pub fn new( _0: u32, _1: u32, _2: u32, _3: u32, _4: u32, _5: u32, _6: u32, _7: u32, _8: u32, _9: u32, _10: u32, _11: u32, _12: u32, _13: u32, _14: u32, _15: u32 ) -> Self

source§

impl Simd<u32x16>

source

pub fn from_slice_unaligned(slice: &[u32]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u64x2>

source

pub fn new(_0: u64, _1: u64) -> Self

source§

impl Simd<u64x2>

source

pub fn from_slice_unaligned(slice: &[u64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u64x4>

source

pub fn new(_0: u64, _1: u64, _2: u64, _3: u64) -> Self

source§

impl Simd<u64x4>

source

pub fn from_slice_unaligned(slice: &[u64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u64x8>

source

pub fn new( _0: u64, _1: u64, _2: u64, _3: u64, _4: u64, _5: u64, _6: u64, _7: u64 ) -> Self

source§

impl Simd<u64x8>

source

pub fn from_slice_unaligned(slice: &[u64]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u8x2>

source

pub fn new(_0: u8, _1: u8) -> Self

source§

impl Simd<u8x2>

source

pub fn from_slice_unaligned(slice: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u8x4>

source

pub fn new(_0: u8, _1: u8, _2: u8, _3: u8) -> Self

source§

impl Simd<u8x4>

source

pub fn from_slice_unaligned(slice: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u8x8>

source

pub fn new( _0: u8, _1: u8, _2: u8, _3: u8, _4: u8, _5: u8, _6: u8, _7: u8 ) -> Self

source§

impl Simd<u8x8>

source

pub fn from_slice_unaligned(slice: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u8x16>

source

pub fn new( _0: u8, _1: u8, _2: u8, _3: u8, _4: u8, _5: u8, _6: u8, _7: u8, _8: u8, _9: u8, _10: u8, _11: u8, _12: u8, _13: u8, _14: u8, _15: u8 ) -> Self

source§

impl Simd<u8x16>

source

pub fn from_slice_unaligned(slice: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u8x32>

source

pub fn new( _0: u8, _1: u8, _2: u8, _3: u8, _4: u8, _5: u8, _6: u8, _7: u8, _8: u8, _9: u8, _10: u8, _11: u8, _12: u8, _13: u8, _14: u8, _15: u8, _16: u8, _17: u8, _18: u8, _19: u8, _20: u8, _21: u8, _22: u8, _23: u8, _24: u8, _25: u8, _26: u8, _27: u8, _28: u8, _29: u8, _30: u8, _31: u8 ) -> Self

source§

impl Simd<u8x32>

source

pub fn from_slice_unaligned(slice: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<u8x64>

source

pub fn new( _0: u8, _1: u8, _2: u8, _3: u8, _4: u8, _5: u8, _6: u8, _7: u8, _8: u8, _9: u8, _10: u8, _11: u8, _12: u8, _13: u8, _14: u8, _15: u8, _16: u8, _17: u8, _18: u8, _19: u8, _20: u8, _21: u8, _22: u8, _23: u8, _24: u8, _25: u8, _26: u8, _27: u8, _28: u8, _29: u8, _30: u8, _31: u8, _32: u8, _33: u8, _34: u8, _35: u8, _36: u8, _37: u8, _38: u8, _39: u8, _40: u8, _41: u8, _42: u8, _43: u8, _44: u8, _45: u8, _46: u8, _47: u8, _48: u8, _49: u8, _50: u8, _51: u8, _52: u8, _53: u8, _54: u8, _55: u8, _56: u8, _57: u8, _58: u8, _59: u8, _60: u8, _61: u8, _62: u8, _63: u8 ) -> Self

source§

impl Simd<u8x64>

source

pub fn from_slice_unaligned(slice: &[u8]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<usizex2>

source

pub fn new(_0: usize, _1: usize) -> Self

source§

impl Simd<usizex2>

source

pub fn from_slice_unaligned(slice: &[usize]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<usizex4>

source

pub fn new(_0: usize, _1: usize, _2: usize, _3: usize) -> Self

source§

impl Simd<usizex4>

source

pub fn from_slice_unaligned(slice: &[usize]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<usizex8>

source

pub fn new( _0: usize, _1: usize, _2: usize, _3: usize, _4: usize, _5: usize, _6: usize, _7: usize ) -> Self

source§

impl Simd<usizex8>

source

pub fn from_slice_unaligned(slice: &[usize]) -> Self

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

source§

impl Simd<m128x1>

source

pub fn new(_0: bool) -> Self

source§

impl Simd<m128x2>

source

pub fn new(_0: bool, _1: bool) -> Self

source§

impl Simd<m128x4>

source

pub fn new(_0: bool, _1: bool, _2: bool, _3: bool) -> Self

source§

impl Simd<m16x2>

source

pub fn new(_0: bool, _1: bool) -> Self

source§

impl Simd<m16x4>

source

pub fn new(_0: bool, _1: bool, _2: bool, _3: bool) -> Self

source§

impl Simd<m16x8>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool ) -> Self

source§

impl Simd<m16x16>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool, _8: bool, _9: bool, _10: bool, _11: bool, _12: bool, _13: bool, _14: bool, _15: bool ) -> Self

source§

impl Simd<m16x32>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool, _8: bool, _9: bool, _10: bool, _11: bool, _12: bool, _13: bool, _14: bool, _15: bool, _16: bool, _17: bool, _18: bool, _19: bool, _20: bool, _21: bool, _22: bool, _23: bool, _24: bool, _25: bool, _26: bool, _27: bool, _28: bool, _29: bool, _30: bool, _31: bool ) -> Self

source§

impl Simd<m32x2>

source

pub fn new(_0: bool, _1: bool) -> Self

source§

impl Simd<m32x4>

source

pub fn new(_0: bool, _1: bool, _2: bool, _3: bool) -> Self

source§

impl Simd<m32x8>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool ) -> Self

source§

impl Simd<m32x16>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool, _8: bool, _9: bool, _10: bool, _11: bool, _12: bool, _13: bool, _14: bool, _15: bool ) -> Self

source§

impl Simd<m64x2>

source

pub fn new(_0: bool, _1: bool) -> Self

source§

impl Simd<m64x4>

source

pub fn new(_0: bool, _1: bool, _2: bool, _3: bool) -> Self

source§

impl Simd<m64x8>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool ) -> Self

source§

impl Simd<m8x2>

source

pub fn new(_0: bool, _1: bool) -> Self

source§

impl Simd<m8x4>

source

pub fn new(_0: bool, _1: bool, _2: bool, _3: bool) -> Self

source§

impl Simd<m8x8>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool ) -> Self

source§

impl Simd<m8x16>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool, _8: bool, _9: bool, _10: bool, _11: bool, _12: bool, _13: bool, _14: bool, _15: bool ) -> Self

source§

impl Simd<m8x32>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool, _8: bool, _9: bool, _10: bool, _11: bool, _12: bool, _13: bool, _14: bool, _15: bool, _16: bool, _17: bool, _18: bool, _19: bool, _20: bool, _21: bool, _22: bool, _23: bool, _24: bool, _25: bool, _26: bool, _27: bool, _28: bool, _29: bool, _30: bool, _31: bool ) -> Self

source§

impl Simd<m8x64>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool, _8: bool, _9: bool, _10: bool, _11: bool, _12: bool, _13: bool, _14: bool, _15: bool, _16: bool, _17: bool, _18: bool, _19: bool, _20: bool, _21: bool, _22: bool, _23: bool, _24: bool, _25: bool, _26: bool, _27: bool, _28: bool, _29: bool, _30: bool, _31: bool, _32: bool, _33: bool, _34: bool, _35: bool, _36: bool, _37: bool, _38: bool, _39: bool, _40: bool, _41: bool, _42: bool, _43: bool, _44: bool, _45: bool, _46: bool, _47: bool, _48: bool, _49: bool, _50: bool, _51: bool, _52: bool, _53: bool, _54: bool, _55: bool, _56: bool, _57: bool, _58: bool, _59: bool, _60: bool, _61: bool, _62: bool, _63: bool ) -> Self

source§

impl Simd<msizex2>

source

pub fn new(_0: bool, _1: bool) -> Self

source§

impl Simd<msizex4>

source

pub fn new(_0: bool, _1: bool, _2: bool, _3: bool) -> Self

source§

impl Simd<msizex8>

source

pub fn new( _0: bool, _1: bool, _2: bool, _3: bool, _4: bool, _5: bool, _6: bool, _7: bool ) -> Self

Trait Implementations§

source§

impl Add<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

§

type Output = Simd<Simd<[f32; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

§

type Output = Simd<Simd<[f32; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

§

type Output = Simd<Simd<[f32; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

§

type Output = Simd<Simd<[f32; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

§

type Output = Simd<Simd<[f64; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

§

type Output = Simd<Simd<[f64; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

§

type Output = Simd<Simd<[f64; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

§

type Output = Simd<Simd<[i128; 1]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

§

type Output = Simd<Simd<[i128; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

§

type Output = Simd<Simd<[i128; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

§

type Output = Simd<Simd<[i16; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

§

type Output = Simd<Simd<[i16; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

§

type Output = Simd<Simd<[i16; 32]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

§

type Output = Simd<Simd<[i16; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

§

type Output = Simd<Simd<[i16; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

§

type Output = Simd<Simd<[i32; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

§

type Output = Simd<Simd<[i32; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

§

type Output = Simd<Simd<[i32; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

§

type Output = Simd<Simd<[i32; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

§

type Output = Simd<Simd<[i64; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

§

type Output = Simd<Simd<[i64; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

§

type Output = Simd<Simd<[i64; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

§

type Output = Simd<Simd<[i8; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

§

type Output = Simd<Simd<[i8; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

§

type Output = Simd<Simd<[i8; 32]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

§

type Output = Simd<Simd<[i8; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

§

type Output = Simd<Simd<[i8; 64]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

§

type Output = Simd<Simd<[i8; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

§

type Output = Simd<Simd<[isize; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

§

type Output = Simd<Simd<[isize; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

§

type Output = Simd<Simd<[isize; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

§

type Output = Simd<Simd<[u128; 1]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

§

type Output = Simd<Simd<[u128; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

§

type Output = Simd<Simd<[u128; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

§

type Output = Simd<Simd<[u16; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

§

type Output = Simd<Simd<[u16; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

§

type Output = Simd<Simd<[u16; 32]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

§

type Output = Simd<Simd<[u16; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

§

type Output = Simd<Simd<[u16; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

§

type Output = Simd<Simd<[u32; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

§

type Output = Simd<Simd<[u32; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

§

type Output = Simd<Simd<[u32; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

§

type Output = Simd<Simd<[u32; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

§

type Output = Simd<Simd<[u64; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

§

type Output = Simd<Simd<[u64; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

§

type Output = Simd<Simd<[u64; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

§

type Output = Simd<Simd<[u8; 16]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

§

type Output = Simd<Simd<[u8; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

§

type Output = Simd<Simd<[u8; 32]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

§

type Output = Simd<Simd<[u8; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

§

type Output = Simd<Simd<[u8; 64]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

§

type Output = Simd<Simd<[u8; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

§

type Output = Simd<Simd<[usize; 2]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

§

type Output = Simd<Simd<[usize; 4]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl Add<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

§

type Output = Simd<Simd<[usize; 8]>>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl AddAssign<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl AddAssign<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl BitAnd<Simd<Simd<[m128; 1]>>> for Simd<m128x1>

§

type Output = Simd<Simd<[m128; 1]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m128; 2]>>> for Simd<m128x2>

§

type Output = Simd<Simd<[m128; 2]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m128; 4]>>> for Simd<m128x4>

§

type Output = Simd<Simd<[m128; 4]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m16; 16]>>> for Simd<m16x16>

§

type Output = Simd<Simd<[m16; 16]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m16; 2]>>> for Simd<m16x2>

§

type Output = Simd<Simd<[m16; 2]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m16; 32]>>> for Simd<m16x32>

§

type Output = Simd<Simd<[m16; 32]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m16; 4]>>> for Simd<m16x4>

§

type Output = Simd<Simd<[m16; 4]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m16; 8]>>> for Simd<m16x8>

§

type Output = Simd<Simd<[m16; 8]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m32; 16]>>> for Simd<m32x16>

§

type Output = Simd<Simd<[m32; 16]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m32; 2]>>> for Simd<m32x2>

§

type Output = Simd<Simd<[m32; 2]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m32; 4]>>> for Simd<m32x4>

§

type Output = Simd<Simd<[m32; 4]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m32; 8]>>> for Simd<m32x8>

§

type Output = Simd<Simd<[m32; 8]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m64; 2]>>> for Simd<m64x2>

§

type Output = Simd<Simd<[m64; 2]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m64; 4]>>> for Simd<m64x4>

§

type Output = Simd<Simd<[m64; 4]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m64; 8]>>> for Simd<m64x8>

§

type Output = Simd<Simd<[m64; 8]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m8; 16]>>> for Simd<m8x16>

§

type Output = Simd<Simd<[m8; 16]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m8; 2]>>> for Simd<m8x2>

§

type Output = Simd<Simd<[m8; 2]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m8; 32]>>> for Simd<m8x32>

§

type Output = Simd<Simd<[m8; 32]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m8; 4]>>> for Simd<m8x4>

§

type Output = Simd<Simd<[m8; 4]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m8; 64]>>> for Simd<m8x64>

§

type Output = Simd<Simd<[m8; 64]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[m8; 8]>>> for Simd<m8x8>

§

type Output = Simd<Simd<[m8; 8]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[msize; 2]>>> for Simd<msizex2>

§

type Output = Simd<Simd<[msize; 2]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[msize; 4]>>> for Simd<msizex4>

§

type Output = Simd<Simd<[msize; 4]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<Simd<Simd<[msize; 8]>>> for Simd<msizex8>

§

type Output = Simd<Simd<[msize; 8]>>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self

Performs the & operation. Read more
source§

impl BitOr<Simd<Simd<[m128; 1]>>> for Simd<m128x1>

§

type Output = Simd<Simd<[m128; 1]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m128; 2]>>> for Simd<m128x2>

§

type Output = Simd<Simd<[m128; 2]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m128; 4]>>> for Simd<m128x4>

§

type Output = Simd<Simd<[m128; 4]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m16; 16]>>> for Simd<m16x16>

§

type Output = Simd<Simd<[m16; 16]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m16; 2]>>> for Simd<m16x2>

§

type Output = Simd<Simd<[m16; 2]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m16; 32]>>> for Simd<m16x32>

§

type Output = Simd<Simd<[m16; 32]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m16; 4]>>> for Simd<m16x4>

§

type Output = Simd<Simd<[m16; 4]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m16; 8]>>> for Simd<m16x8>

§

type Output = Simd<Simd<[m16; 8]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m32; 16]>>> for Simd<m32x16>

§

type Output = Simd<Simd<[m32; 16]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m32; 2]>>> for Simd<m32x2>

§

type Output = Simd<Simd<[m32; 2]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m32; 4]>>> for Simd<m32x4>

§

type Output = Simd<Simd<[m32; 4]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m32; 8]>>> for Simd<m32x8>

§

type Output = Simd<Simd<[m32; 8]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m64; 2]>>> for Simd<m64x2>

§

type Output = Simd<Simd<[m64; 2]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m64; 4]>>> for Simd<m64x4>

§

type Output = Simd<Simd<[m64; 4]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m64; 8]>>> for Simd<m64x8>

§

type Output = Simd<Simd<[m64; 8]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m8; 16]>>> for Simd<m8x16>

§

type Output = Simd<Simd<[m8; 16]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m8; 2]>>> for Simd<m8x2>

§

type Output = Simd<Simd<[m8; 2]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m8; 32]>>> for Simd<m8x32>

§

type Output = Simd<Simd<[m8; 32]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m8; 4]>>> for Simd<m8x4>

§

type Output = Simd<Simd<[m8; 4]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m8; 64]>>> for Simd<m8x64>

§

type Output = Simd<Simd<[m8; 64]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[m8; 8]>>> for Simd<m8x8>

§

type Output = Simd<Simd<[m8; 8]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[msize; 2]>>> for Simd<msizex2>

§

type Output = Simd<Simd<[msize; 2]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[msize; 4]>>> for Simd<msizex4>

§

type Output = Simd<Simd<[msize; 4]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<Simd<Simd<[msize; 8]>>> for Simd<msizex8>

§

type Output = Simd<Simd<[msize; 8]>>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitXor<Simd<Simd<[m128; 1]>>> for Simd<m128x1>

§

type Output = Simd<Simd<[m128; 1]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m128; 2]>>> for Simd<m128x2>

§

type Output = Simd<Simd<[m128; 2]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m128; 4]>>> for Simd<m128x4>

§

type Output = Simd<Simd<[m128; 4]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m16; 16]>>> for Simd<m16x16>

§

type Output = Simd<Simd<[m16; 16]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m16; 2]>>> for Simd<m16x2>

§

type Output = Simd<Simd<[m16; 2]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m16; 32]>>> for Simd<m16x32>

§

type Output = Simd<Simd<[m16; 32]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m16; 4]>>> for Simd<m16x4>

§

type Output = Simd<Simd<[m16; 4]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m16; 8]>>> for Simd<m16x8>

§

type Output = Simd<Simd<[m16; 8]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m32; 16]>>> for Simd<m32x16>

§

type Output = Simd<Simd<[m32; 16]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m32; 2]>>> for Simd<m32x2>

§

type Output = Simd<Simd<[m32; 2]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m32; 4]>>> for Simd<m32x4>

§

type Output = Simd<Simd<[m32; 4]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m32; 8]>>> for Simd<m32x8>

§

type Output = Simd<Simd<[m32; 8]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m64; 2]>>> for Simd<m64x2>

§

type Output = Simd<Simd<[m64; 2]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m64; 4]>>> for Simd<m64x4>

§

type Output = Simd<Simd<[m64; 4]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m64; 8]>>> for Simd<m64x8>

§

type Output = Simd<Simd<[m64; 8]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m8; 16]>>> for Simd<m8x16>

§

type Output = Simd<Simd<[m8; 16]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m8; 2]>>> for Simd<m8x2>

§

type Output = Simd<Simd<[m8; 2]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m8; 32]>>> for Simd<m8x32>

§

type Output = Simd<Simd<[m8; 32]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m8; 4]>>> for Simd<m8x4>

§

type Output = Simd<Simd<[m8; 4]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m8; 64]>>> for Simd<m8x64>

§

type Output = Simd<Simd<[m8; 64]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[m8; 8]>>> for Simd<m8x8>

§

type Output = Simd<Simd<[m8; 8]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[msize; 2]>>> for Simd<msizex2>

§

type Output = Simd<Simd<[msize; 2]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[msize; 4]>>> for Simd<msizex4>

§

type Output = Simd<Simd<[msize; 4]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<Simd<Simd<[msize; 8]>>> for Simd<msizex8>

§

type Output = Simd<Simd<[msize; 8]>>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self

Performs the ^ operation. Read more
source§

impl<N: Clone> Clone for Simd<N>

source§

fn clone(&self) -> Simd<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<N: Debug> Debug for Simd<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f32x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f32x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f32x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f32x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f64x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f64x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<f64x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i128x1>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i128x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i128x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i16x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i16x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i16x32>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i16x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i16x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i32x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i32x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i32x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i32x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i64x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i64x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i64x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i8x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i8x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i8x32>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i8x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i8x64>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<i8x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<isizex2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<isizex4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<isizex8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m128x1>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m128x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m128x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m16x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m16x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m16x32>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m16x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m16x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m32x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m32x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m32x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m32x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m64x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m64x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m64x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m8x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m8x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m8x32>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m8x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m8x64>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<m8x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<msizex2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<msizex4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<msizex8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u128x1>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u128x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u128x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u16x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u16x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u16x32>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u16x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u16x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u32x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u32x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u32x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u32x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u64x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u64x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u64x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u8x16>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u8x2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u8x32>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u8x4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u8x64>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<u8x8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<usizex2>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<usizex4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Simd<usizex8>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Distribution<Simd<Simd<[f32; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f32x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[f32; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f32x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[f32; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f32x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[f32; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f32x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[f64; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f64x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[f64; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f64x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[f64; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<f64x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i128; 1]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i128x1>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i128; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i128x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i128; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i128x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i16; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i16x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i16; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i16x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i16; 32]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i16x32>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i16; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i16x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i16; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i16x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i32; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i32x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i32; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i32x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i32; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i32x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i32; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i32x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i64; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i64x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i64; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i64x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i64; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i64x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i8; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i8x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i8; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i8x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i8; 32]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i8x32>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i8; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i8x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i8; 64]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i8x64>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[i8; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<i8x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[isize; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<isizex2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[isize; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<isizex4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[isize; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<isizex8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m128; 1]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m128x1>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m128; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m128x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m128; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m128x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m16; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m16x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m16; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m16x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m16; 32]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m16x32>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m16; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m16x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m16; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m16x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m32; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m32x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m32; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m32x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m32; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m32x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m32; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m32x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m64; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m64x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m64; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m64x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m64; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m64x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m8; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m8x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m8; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m8x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m8; 32]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m8x32>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m8; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m8x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m8; 64]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m8x64>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[m8; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<m8x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[msize; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<msizex2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[msize; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<msizex4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[msize; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<msizex8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u128; 1]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u128x1>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u128; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u128x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u128; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u128x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u16; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u16x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u16; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u16x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u16; 32]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u16x32>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u16; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u16x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u16; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u16x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u32; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u32x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u32; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u32x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u32; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u32x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u32; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u32x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u64; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u64x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u64; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u64x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u64; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u64x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u8; 16]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u8x16>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u8; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u8x2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u8; 32]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u8x32>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u8; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u8x4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u8; 64]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u8x64>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[u8; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<u8x8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[usize; 2]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<usizex2>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[usize; 4]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<usizex4>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<Simd<Simd<[usize; 8]>>> for Standard

source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Simd<usizex8>

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Div<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

§

type Output = Simd<Simd<[f32; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

§

type Output = Simd<Simd<[f32; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

§

type Output = Simd<Simd<[f32; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

§

type Output = Simd<Simd<[f32; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

§

type Output = Simd<Simd<[f64; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

§

type Output = Simd<Simd<[f64; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

§

type Output = Simd<Simd<[f64; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

§

type Output = Simd<Simd<[i128; 1]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

§

type Output = Simd<Simd<[i128; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

§

type Output = Simd<Simd<[i128; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

§

type Output = Simd<Simd<[i16; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

§

type Output = Simd<Simd<[i16; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

§

type Output = Simd<Simd<[i16; 32]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

§

type Output = Simd<Simd<[i16; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

§

type Output = Simd<Simd<[i16; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

§

type Output = Simd<Simd<[i32; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

§

type Output = Simd<Simd<[i32; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

§

type Output = Simd<Simd<[i32; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

§

type Output = Simd<Simd<[i32; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

§

type Output = Simd<Simd<[i64; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

§

type Output = Simd<Simd<[i64; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

§

type Output = Simd<Simd<[i64; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

§

type Output = Simd<Simd<[i8; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

§

type Output = Simd<Simd<[i8; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

§

type Output = Simd<Simd<[i8; 32]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

§

type Output = Simd<Simd<[i8; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

§

type Output = Simd<Simd<[i8; 64]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

§

type Output = Simd<Simd<[i8; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

§

type Output = Simd<Simd<[isize; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

§

type Output = Simd<Simd<[isize; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

§

type Output = Simd<Simd<[isize; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

§

type Output = Simd<Simd<[u128; 1]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

§

type Output = Simd<Simd<[u128; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

§

type Output = Simd<Simd<[u128; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

§

type Output = Simd<Simd<[u16; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

§

type Output = Simd<Simd<[u16; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

§

type Output = Simd<Simd<[u16; 32]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

§

type Output = Simd<Simd<[u16; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

§

type Output = Simd<Simd<[u16; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

§

type Output = Simd<Simd<[u32; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

§

type Output = Simd<Simd<[u32; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

§

type Output = Simd<Simd<[u32; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

§

type Output = Simd<Simd<[u32; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

§

type Output = Simd<Simd<[u64; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

§

type Output = Simd<Simd<[u64; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

§

type Output = Simd<Simd<[u64; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

§

type Output = Simd<Simd<[u8; 16]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

§

type Output = Simd<Simd<[u8; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

§

type Output = Simd<Simd<[u8; 32]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

§

type Output = Simd<Simd<[u8; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

§

type Output = Simd<Simd<[u8; 64]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

§

type Output = Simd<Simd<[u8; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

§

type Output = Simd<Simd<[usize; 2]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

§

type Output = Simd<Simd<[usize; 4]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl Div<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

§

type Output = Simd<Simd<[usize; 8]>>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self

Performs the / operation. Read more
source§

impl DivAssign<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl DivAssign<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl From<[bool; 1]> for Simd<m128x1>

source§

fn from(vals: [bool; 1]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 16]> for Simd<m16x16>

source§

fn from(vals: [bool; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 16]> for Simd<m32x16>

source§

fn from(vals: [bool; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 16]> for Simd<m8x16>

source§

fn from(vals: [bool; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 2]> for Simd<m128x2>

source§

fn from(vals: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 2]> for Simd<m16x2>

source§

fn from(vals: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 2]> for Simd<m32x2>

source§

fn from(vals: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 2]> for Simd<m64x2>

source§

fn from(vals: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 2]> for Simd<m8x2>

source§

fn from(vals: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 2]> for Simd<msizex2>

source§

fn from(vals: [bool; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 32]> for Simd<m16x32>

source§

fn from(vals: [bool; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 32]> for Simd<m8x32>

source§

fn from(vals: [bool; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 4]> for Simd<m128x4>

source§

fn from(vals: [bool; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 4]> for Simd<m16x4>

source§

fn from(vals: [bool; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 4]> for Simd<m32x4>

source§

fn from(vals: [bool; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 4]> for Simd<m64x4>

source§

fn from(vals: [bool; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 4]> for Simd<m8x4>

source§

fn from(vals: [bool; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 4]> for Simd<msizex4>

source§

fn from(vals: [bool; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 64]> for Simd<m8x64>

source§

fn from(vals: [bool; 64]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 8]> for Simd<m16x8>

source§

fn from(vals: [bool; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 8]> for Simd<m32x8>

source§

fn from(vals: [bool; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 8]> for Simd<m64x8>

source§

fn from(vals: [bool; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 8]> for Simd<m8x8>

source§

fn from(vals: [bool; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[bool; 8]> for Simd<msizex8>

source§

fn from(vals: [bool; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[f32; 16]> for Simd<f32x16>

source§

fn from(vals: [f32; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[f32; 2]> for Simd<f32x2>

source§

fn from(vals: [f32; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[f32; 4]> for Simd<f32x4>

source§

fn from(vals: [f32; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[f32; 8]> for Simd<f32x8>

source§

fn from(vals: [f32; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[f64; 2]> for Simd<f64x2>

source§

fn from(vals: [f64; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[f64; 4]> for Simd<f64x4>

source§

fn from(vals: [f64; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[f64; 8]> for Simd<f64x8>

source§

fn from(vals: [f64; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[i128; 1]> for Simd<i128x1>

source§

fn from(vals: [i128; 1]) -> Self

Converts to this type from the input type.
source§

impl From<[i128; 2]> for Simd<i128x2>

source§

fn from(vals: [i128; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[i128; 4]> for Simd<i128x4>

source§

fn from(vals: [i128; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[i16; 16]> for Simd<i16x16>

source§

fn from(vals: [i16; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[i16; 2]> for Simd<i16x2>

source§

fn from(vals: [i16; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[i16; 32]> for Simd<i16x32>

source§

fn from(vals: [i16; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[i16; 4]> for Simd<i16x4>

source§

fn from(vals: [i16; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[i16; 8]> for Simd<i16x8>

source§

fn from(vals: [i16; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[i32; 16]> for Simd<i32x16>

source§

fn from(vals: [i32; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[i32; 2]> for Simd<i32x2>

source§

fn from(vals: [i32; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[i32; 4]> for Simd<i32x4>

source§

fn from(vals: [i32; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[i32; 8]> for Simd<i32x8>

source§

fn from(vals: [i32; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[i64; 2]> for Simd<i64x2>

source§

fn from(vals: [i64; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[i64; 4]> for Simd<i64x4>

source§

fn from(vals: [i64; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[i64; 8]> for Simd<i64x8>

source§

fn from(vals: [i64; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[i8; 16]> for Simd<i8x16>

source§

fn from(vals: [i8; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[i8; 2]> for Simd<i8x2>

source§

fn from(vals: [i8; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[i8; 32]> for Simd<i8x32>

source§

fn from(vals: [i8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[i8; 4]> for Simd<i8x4>

source§

fn from(vals: [i8; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[i8; 64]> for Simd<i8x64>

source§

fn from(vals: [i8; 64]) -> Self

Converts to this type from the input type.
source§

impl From<[i8; 8]> for Simd<i8x8>

source§

fn from(vals: [i8; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[isize; 2]> for Simd<isizex2>

source§

fn from(vals: [isize; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[isize; 4]> for Simd<isizex4>

source§

fn from(vals: [isize; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[isize; 8]> for Simd<isizex8>

source§

fn from(vals: [isize; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[u128; 1]> for Simd<u128x1>

source§

fn from(vals: [u128; 1]) -> Self

Converts to this type from the input type.
source§

impl From<[u128; 2]> for Simd<u128x2>

source§

fn from(vals: [u128; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[u128; 4]> for Simd<u128x4>

source§

fn from(vals: [u128; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[u16; 16]> for Simd<u16x16>

source§

fn from(vals: [u16; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[u16; 2]> for Simd<u16x2>

source§

fn from(vals: [u16; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[u16; 32]> for Simd<u16x32>

source§

fn from(vals: [u16; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[u16; 4]> for Simd<u16x4>

source§

fn from(vals: [u16; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[u16; 8]> for Simd<u16x8>

source§

fn from(vals: [u16; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[u32; 16]> for Simd<u32x16>

source§

fn from(vals: [u32; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[u32; 2]> for Simd<u32x2>

source§

fn from(vals: [u32; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[u32; 4]> for Simd<u32x4>

source§

fn from(vals: [u32; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[u32; 8]> for Simd<u32x8>

source§

fn from(vals: [u32; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[u64; 2]> for Simd<u64x2>

source§

fn from(vals: [u64; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[u64; 4]> for Simd<u64x4>

source§

fn from(vals: [u64; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[u64; 8]> for Simd<u64x8>

source§

fn from(vals: [u64; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 16]> for Simd<u8x16>

source§

fn from(vals: [u8; 16]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 2]> for Simd<u8x2>

source§

fn from(vals: [u8; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 32]> for Simd<u8x32>

source§

fn from(vals: [u8; 32]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 4]> for Simd<u8x4>

source§

fn from(vals: [u8; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 64]> for Simd<u8x64>

source§

fn from(vals: [u8; 64]) -> Self

Converts to this type from the input type.
source§

impl From<[u8; 8]> for Simd<u8x8>

source§

fn from(vals: [u8; 8]) -> Self

Converts to this type from the input type.
source§

impl From<[usize; 2]> for Simd<usizex2>

source§

fn from(vals: [usize; 2]) -> Self

Converts to this type from the input type.
source§

impl From<[usize; 4]> for Simd<usizex4>

source§

fn from(vals: [usize; 4]) -> Self

Converts to this type from the input type.
source§

impl From<[usize; 8]> for Simd<usizex8>

source§

fn from(vals: [usize; 8]) -> Self

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f32; 16]>>> for [f32; 16]

source§

fn from(val: Simd<f32x16>) -> [f32; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f32; 2]>>> for [f32; 2]

source§

fn from(val: Simd<f32x2>) -> [f32; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f32; 4]>>> for [f32; 4]

source§

fn from(val: Simd<f32x4>) -> [f32; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f32; 8]>>> for [f32; 8]

source§

fn from(val: Simd<f32x8>) -> [f32; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f64; 2]>>> for [f64; 2]

source§

fn from(val: Simd<f64x2>) -> [f64; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f64; 4]>>> for [f64; 4]

source§

fn from(val: Simd<f64x4>) -> [f64; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[f64; 8]>>> for [f64; 8]

source§

fn from(val: Simd<f64x8>) -> [f64; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i128; 1]>>> for [i128; 1]

source§

fn from(val: Simd<i128x1>) -> [i128; 1]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i128; 2]>>> for [i128; 2]

source§

fn from(val: Simd<i128x2>) -> [i128; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i128; 4]>>> for [i128; 4]

source§

fn from(val: Simd<i128x4>) -> [i128; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i16; 16]>>> for [i16; 16]

source§

fn from(val: Simd<i16x16>) -> [i16; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i16; 2]>>> for [i16; 2]

source§

fn from(val: Simd<i16x2>) -> [i16; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i16; 32]>>> for [i16; 32]

source§

fn from(val: Simd<i16x32>) -> [i16; 32]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i16; 4]>>> for [i16; 4]

source§

fn from(val: Simd<i16x4>) -> [i16; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i16; 8]>>> for [i16; 8]

source§

fn from(val: Simd<i16x8>) -> [i16; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i32; 16]>>> for [i32; 16]

source§

fn from(val: Simd<i32x16>) -> [i32; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i32; 2]>>> for [i32; 2]

source§

fn from(val: Simd<i32x2>) -> [i32; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i32; 4]>>> for [i32; 4]

source§

fn from(val: Simd<i32x4>) -> [i32; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i32; 8]>>> for [i32; 8]

source§

fn from(val: Simd<i32x8>) -> [i32; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i64; 2]>>> for [i64; 2]

source§

fn from(val: Simd<i64x2>) -> [i64; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i64; 4]>>> for [i64; 4]

source§

fn from(val: Simd<i64x4>) -> [i64; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i64; 8]>>> for [i64; 8]

source§

fn from(val: Simd<i64x8>) -> [i64; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i8; 16]>>> for [i8; 16]

source§

fn from(val: Simd<i8x16>) -> [i8; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i8; 2]>>> for [i8; 2]

source§

fn from(val: Simd<i8x2>) -> [i8; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i8; 32]>>> for [i8; 32]

source§

fn from(val: Simd<i8x32>) -> [i8; 32]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i8; 4]>>> for [i8; 4]

source§

fn from(val: Simd<i8x4>) -> [i8; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i8; 64]>>> for [i8; 64]

source§

fn from(val: Simd<i8x64>) -> [i8; 64]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[i8; 8]>>> for [i8; 8]

source§

fn from(val: Simd<i8x8>) -> [i8; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[isize; 2]>>> for [isize; 2]

source§

fn from(val: Simd<isizex2>) -> [isize; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[isize; 4]>>> for [isize; 4]

source§

fn from(val: Simd<isizex4>) -> [isize; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[isize; 8]>>> for [isize; 8]

source§

fn from(val: Simd<isizex8>) -> [isize; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u128; 1]>>> for [u128; 1]

source§

fn from(val: Simd<u128x1>) -> [u128; 1]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u128; 2]>>> for [u128; 2]

source§

fn from(val: Simd<u128x2>) -> [u128; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u128; 4]>>> for [u128; 4]

source§

fn from(val: Simd<u128x4>) -> [u128; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u16; 16]>>> for [u16; 16]

source§

fn from(val: Simd<u16x16>) -> [u16; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u16; 2]>>> for [u16; 2]

source§

fn from(val: Simd<u16x2>) -> [u16; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u16; 32]>>> for [u16; 32]

source§

fn from(val: Simd<u16x32>) -> [u16; 32]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u16; 4]>>> for [u16; 4]

source§

fn from(val: Simd<u16x4>) -> [u16; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u16; 8]>>> for [u16; 8]

source§

fn from(val: Simd<u16x8>) -> [u16; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u32; 16]>>> for [u32; 16]

source§

fn from(val: Simd<u32x16>) -> [u32; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u32; 2]>>> for [u32; 2]

source§

fn from(val: Simd<u32x2>) -> [u32; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u32; 4]>>> for [u32; 4]

source§

fn from(val: Simd<u32x4>) -> [u32; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u32; 8]>>> for [u32; 8]

source§

fn from(val: Simd<u32x8>) -> [u32; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u64; 2]>>> for [u64; 2]

source§

fn from(val: Simd<u64x2>) -> [u64; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u64; 4]>>> for [u64; 4]

source§

fn from(val: Simd<u64x4>) -> [u64; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u64; 8]>>> for [u64; 8]

source§

fn from(val: Simd<u64x8>) -> [u64; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u8; 16]>>> for [u8; 16]

source§

fn from(val: Simd<u8x16>) -> [u8; 16]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u8; 2]>>> for [u8; 2]

source§

fn from(val: Simd<u8x2>) -> [u8; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u8; 32]>>> for [u8; 32]

source§

fn from(val: Simd<u8x32>) -> [u8; 32]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u8; 4]>>> for [u8; 4]

source§

fn from(val: Simd<u8x4>) -> [u8; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u8; 64]>>> for [u8; 64]

source§

fn from(val: Simd<u8x64>) -> [u8; 64]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[u8; 8]>>> for [u8; 8]

source§

fn from(val: Simd<u8x8>) -> [u8; 8]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[usize; 2]>>> for [usize; 2]

source§

fn from(val: Simd<usizex2>) -> [usize; 2]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[usize; 4]>>> for [usize; 4]

source§

fn from(val: Simd<usizex4>) -> [usize; 4]

Converts to this type from the input type.
source§

impl From<Simd<Simd<[usize; 8]>>> for [usize; 8]

source§

fn from(val: Simd<usizex8>) -> [usize; 8]

Converts to this type from the input type.
source§

impl FromPrimitive for Simd<f32x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<f32x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<f32x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<f32x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<f64x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<f64x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<f64x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i128x1>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i128x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i128x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i16x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i16x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i16x32>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i16x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i16x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i32x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i32x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i32x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i32x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i64x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i64x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i64x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i8x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i8x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i8x32>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i8x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i8x64>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<i8x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<isizex2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<isizex4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<isizex8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u128x1>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u128x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u128x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u16x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u16x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u16x32>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u16x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u16x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u32x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u32x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u32x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u32x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u64x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u64x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u64x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u8x16>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u8x2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u8x32>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u8x4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u8x64>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<u8x8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<usizex2>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<usizex4>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromPrimitive for Simd<usizex8>

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl Mul<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

§

type Output = Simd<Simd<[f32; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

§

type Output = Simd<Simd<[f32; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

§

type Output = Simd<Simd<[f32; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

§

type Output = Simd<Simd<[f32; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

§

type Output = Simd<Simd<[f64; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

§

type Output = Simd<Simd<[f64; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

§

type Output = Simd<Simd<[f64; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

§

type Output = Simd<Simd<[i128; 1]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

§

type Output = Simd<Simd<[i128; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

§

type Output = Simd<Simd<[i128; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

§

type Output = Simd<Simd<[i16; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

§

type Output = Simd<Simd<[i16; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

§

type Output = Simd<Simd<[i16; 32]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

§

type Output = Simd<Simd<[i16; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

§

type Output = Simd<Simd<[i16; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

§

type Output = Simd<Simd<[i32; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

§

type Output = Simd<Simd<[i32; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

§

type Output = Simd<Simd<[i32; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

§

type Output = Simd<Simd<[i32; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

§

type Output = Simd<Simd<[i64; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

§

type Output = Simd<Simd<[i64; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

§

type Output = Simd<Simd<[i64; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

§

type Output = Simd<Simd<[i8; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

§

type Output = Simd<Simd<[i8; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

§

type Output = Simd<Simd<[i8; 32]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

§

type Output = Simd<Simd<[i8; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

§

type Output = Simd<Simd<[i8; 64]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

§

type Output = Simd<Simd<[i8; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

§

type Output = Simd<Simd<[isize; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

§

type Output = Simd<Simd<[isize; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

§

type Output = Simd<Simd<[isize; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

§

type Output = Simd<Simd<[u128; 1]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

§

type Output = Simd<Simd<[u128; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

§

type Output = Simd<Simd<[u128; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

§

type Output = Simd<Simd<[u16; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

§

type Output = Simd<Simd<[u16; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

§

type Output = Simd<Simd<[u16; 32]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

§

type Output = Simd<Simd<[u16; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

§

type Output = Simd<Simd<[u16; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

§

type Output = Simd<Simd<[u32; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

§

type Output = Simd<Simd<[u32; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

§

type Output = Simd<Simd<[u32; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

§

type Output = Simd<Simd<[u32; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

§

type Output = Simd<Simd<[u64; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

§

type Output = Simd<Simd<[u64; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

§

type Output = Simd<Simd<[u64; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

§

type Output = Simd<Simd<[u8; 16]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

§

type Output = Simd<Simd<[u8; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

§

type Output = Simd<Simd<[u8; 32]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

§

type Output = Simd<Simd<[u8; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

§

type Output = Simd<Simd<[u8; 64]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

§

type Output = Simd<Simd<[u8; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

§

type Output = Simd<Simd<[usize; 2]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

§

type Output = Simd<Simd<[usize; 4]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl Mul<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

§

type Output = Simd<Simd<[usize; 8]>>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self

Performs the * operation. Read more
source§

impl MulAssign<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl MulAssign<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl Neg for Simd<f32x16>

§

type Output = Simd<Simd<[f32; 16]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<f32x2>

§

type Output = Simd<Simd<[f32; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<f32x4>

§

type Output = Simd<Simd<[f32; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<f32x8>

§

type Output = Simd<Simd<[f32; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<f64x2>

§

type Output = Simd<Simd<[f64; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<f64x4>

§

type Output = Simd<Simd<[f64; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<f64x8>

§

type Output = Simd<Simd<[f64; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i128x1>

§

type Output = Simd<Simd<[i128; 1]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i128x2>

§

type Output = Simd<Simd<[i128; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i128x4>

§

type Output = Simd<Simd<[i128; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i16x16>

§

type Output = Simd<Simd<[i16; 16]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i16x2>

§

type Output = Simd<Simd<[i16; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i16x32>

§

type Output = Simd<Simd<[i16; 32]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i16x4>

§

type Output = Simd<Simd<[i16; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i16x8>

§

type Output = Simd<Simd<[i16; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i32x16>

§

type Output = Simd<Simd<[i32; 16]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i32x2>

§

type Output = Simd<Simd<[i32; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i32x4>

§

type Output = Simd<Simd<[i32; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i32x8>

§

type Output = Simd<Simd<[i32; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i64x2>

§

type Output = Simd<Simd<[i64; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i64x4>

§

type Output = Simd<Simd<[i64; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i64x8>

§

type Output = Simd<Simd<[i64; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i8x16>

§

type Output = Simd<Simd<[i8; 16]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i8x2>

§

type Output = Simd<Simd<[i8; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i8x32>

§

type Output = Simd<Simd<[i8; 32]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i8x4>

§

type Output = Simd<Simd<[i8; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i8x64>

§

type Output = Simd<Simd<[i8; 64]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<i8x8>

§

type Output = Simd<Simd<[i8; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<isizex2>

§

type Output = Simd<Simd<[isize; 2]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<isizex4>

§

type Output = Simd<Simd<[isize; 4]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Neg for Simd<isizex8>

§

type Output = Simd<Simd<[isize; 8]>>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl Not for Simd<m128x1>

§

type Output = Simd<Simd<[m128; 1]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m128x2>

§

type Output = Simd<Simd<[m128; 2]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m128x4>

§

type Output = Simd<Simd<[m128; 4]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m16x16>

§

type Output = Simd<Simd<[m16; 16]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m16x2>

§

type Output = Simd<Simd<[m16; 2]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m16x32>

§

type Output = Simd<Simd<[m16; 32]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m16x4>

§

type Output = Simd<Simd<[m16; 4]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m16x8>

§

type Output = Simd<Simd<[m16; 8]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m32x16>

§

type Output = Simd<Simd<[m32; 16]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m32x2>

§

type Output = Simd<Simd<[m32; 2]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m32x4>

§

type Output = Simd<Simd<[m32; 4]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m32x8>

§

type Output = Simd<Simd<[m32; 8]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m64x2>

§

type Output = Simd<Simd<[m64; 2]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m64x4>

§

type Output = Simd<Simd<[m64; 4]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m64x8>

§

type Output = Simd<Simd<[m64; 8]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m8x16>

§

type Output = Simd<Simd<[m8; 16]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m8x2>

§

type Output = Simd<Simd<[m8; 2]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m8x32>

§

type Output = Simd<Simd<[m8; 32]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m8x4>

§

type Output = Simd<Simd<[m8; 4]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m8x64>

§

type Output = Simd<Simd<[m8; 64]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<m8x8>

§

type Output = Simd<Simd<[m8; 8]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<msizex2>

§

type Output = Simd<Simd<[msize; 2]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<msizex4>

§

type Output = Simd<Simd<[msize; 4]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Not for Simd<msizex8>

§

type Output = Simd<Simd<[msize; 8]>>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl Num for Simd<f32x16>

§

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<f32x2>

§

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<f32x4>

§

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<f32x8>

§

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<f64x2>

§

type FromStrRadixErr = <f64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<f64x4>

§

type FromStrRadixErr = <f64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<f64x8>

§

type FromStrRadixErr = <f64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i128x1>

§

type FromStrRadixErr = <i128 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i128x2>

§

type FromStrRadixErr = <i128 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i128x4>

§

type FromStrRadixErr = <i128 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i16x16>

§

type FromStrRadixErr = <i16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i16x2>

§

type FromStrRadixErr = <i16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i16x32>

§

type FromStrRadixErr = <i16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i16x4>

§

type FromStrRadixErr = <i16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i16x8>

§

type FromStrRadixErr = <i16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i32x16>

§

type FromStrRadixErr = <i32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i32x2>

§

type FromStrRadixErr = <i32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i32x4>

§

type FromStrRadixErr = <i32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i32x8>

§

type FromStrRadixErr = <i32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i64x2>

§

type FromStrRadixErr = <i64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i64x4>

§

type FromStrRadixErr = <i64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i64x8>

§

type FromStrRadixErr = <i64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i8x16>

§

type FromStrRadixErr = <i8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i8x2>

§

type FromStrRadixErr = <i8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i8x32>

§

type FromStrRadixErr = <i8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i8x4>

§

type FromStrRadixErr = <i8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i8x64>

§

type FromStrRadixErr = <i8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<i8x8>

§

type FromStrRadixErr = <i8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<isizex2>

§

type FromStrRadixErr = <isize as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<isizex4>

§

type FromStrRadixErr = <isize as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<isizex8>

§

type FromStrRadixErr = <isize as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u128x1>

§

type FromStrRadixErr = <u128 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u128x2>

§

type FromStrRadixErr = <u128 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u128x4>

§

type FromStrRadixErr = <u128 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u16x16>

§

type FromStrRadixErr = <u16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u16x2>

§

type FromStrRadixErr = <u16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u16x32>

§

type FromStrRadixErr = <u16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u16x4>

§

type FromStrRadixErr = <u16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u16x8>

§

type FromStrRadixErr = <u16 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u32x16>

§

type FromStrRadixErr = <u32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u32x2>

§

type FromStrRadixErr = <u32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u32x4>

§

type FromStrRadixErr = <u32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u32x8>

§

type FromStrRadixErr = <u32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u64x2>

§

type FromStrRadixErr = <u64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u64x4>

§

type FromStrRadixErr = <u64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u64x8>

§

type FromStrRadixErr = <u64 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u8x16>

§

type FromStrRadixErr = <u8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u8x2>

§

type FromStrRadixErr = <u8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u8x32>

§

type FromStrRadixErr = <u8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u8x4>

§

type FromStrRadixErr = <u8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u8x64>

§

type FromStrRadixErr = <u8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<u8x8>

§

type FromStrRadixErr = <u8 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<usizex2>

§

type FromStrRadixErr = <usize as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<usizex4>

§

type FromStrRadixErr = <usize as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl Num for Simd<usizex8>

§

type FromStrRadixErr = <usize as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl One for Simd<f32x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<f32x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<f32x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<f32x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<f64x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<f64x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<f64x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i128x1>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i128x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i128x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i16x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i16x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i16x32>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i16x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i16x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i32x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i32x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i32x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i32x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i64x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i64x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i64x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i8x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i8x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i8x32>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i8x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i8x64>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<i8x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<isizex2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<isizex4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<isizex8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u128x1>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u128x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u128x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u16x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u16x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u16x32>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u16x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u16x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u32x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u32x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u32x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u32x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u64x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u64x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u64x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u8x16>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u8x2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u8x32>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u8x4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u8x64>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<u8x8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<usizex2>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<usizex4>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl One for Simd<usizex8>

source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> boolwhere Self: PartialEq<Self>,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl<N: PartialEq> PartialEq<Simd<N>> for Simd<N>

source§

fn eq(&self, other: &Simd<N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Rem<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

§

type Output = Simd<Simd<[f32; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

§

type Output = Simd<Simd<[f32; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

§

type Output = Simd<Simd<[f32; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

§

type Output = Simd<Simd<[f32; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

§

type Output = Simd<Simd<[f64; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

§

type Output = Simd<Simd<[f64; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

§

type Output = Simd<Simd<[f64; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

§

type Output = Simd<Simd<[i128; 1]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

§

type Output = Simd<Simd<[i128; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

§

type Output = Simd<Simd<[i128; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

§

type Output = Simd<Simd<[i16; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

§

type Output = Simd<Simd<[i16; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

§

type Output = Simd<Simd<[i16; 32]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

§

type Output = Simd<Simd<[i16; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

§

type Output = Simd<Simd<[i16; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

§

type Output = Simd<Simd<[i32; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

§

type Output = Simd<Simd<[i32; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

§

type Output = Simd<Simd<[i32; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

§

type Output = Simd<Simd<[i32; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

§

type Output = Simd<Simd<[i64; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

§

type Output = Simd<Simd<[i64; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

§

type Output = Simd<Simd<[i64; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

§

type Output = Simd<Simd<[i8; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

§

type Output = Simd<Simd<[i8; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

§

type Output = Simd<Simd<[i8; 32]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

§

type Output = Simd<Simd<[i8; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

§

type Output = Simd<Simd<[i8; 64]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

§

type Output = Simd<Simd<[i8; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

§

type Output = Simd<Simd<[isize; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

§

type Output = Simd<Simd<[isize; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

§

type Output = Simd<Simd<[isize; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

§

type Output = Simd<Simd<[u128; 1]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

§

type Output = Simd<Simd<[u128; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

§

type Output = Simd<Simd<[u128; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

§

type Output = Simd<Simd<[u16; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

§

type Output = Simd<Simd<[u16; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

§

type Output = Simd<Simd<[u16; 32]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

§

type Output = Simd<Simd<[u16; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

§

type Output = Simd<Simd<[u16; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

§

type Output = Simd<Simd<[u32; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

§

type Output = Simd<Simd<[u32; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

§

type Output = Simd<Simd<[u32; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

§

type Output = Simd<Simd<[u32; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

§

type Output = Simd<Simd<[u64; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

§

type Output = Simd<Simd<[u64; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

§

type Output = Simd<Simd<[u64; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

§

type Output = Simd<Simd<[u8; 16]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

§

type Output = Simd<Simd<[u8; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

§

type Output = Simd<Simd<[u8; 32]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

§

type Output = Simd<Simd<[u8; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

§

type Output = Simd<Simd<[u8; 64]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

§

type Output = Simd<Simd<[u8; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

§

type Output = Simd<Simd<[usize; 2]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

§

type Output = Simd<Simd<[usize; 4]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl Rem<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

§

type Output = Simd<Simd<[usize; 8]>>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self

Performs the % operation. Read more
source§

impl RemAssign<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl RemAssign<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl SimdBool for Simd<m128x1>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m128x2>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m128x4>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m16x16>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m16x2>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m16x32>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m16x4>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m16x8>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m32x16>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m32x2>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m32x4>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m32x8>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m64x2>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m64x4>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m64x8>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m8x16>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m8x2>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m8x32>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m8x4>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m8x64>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<m8x8>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<msizex2>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<msizex4>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdBool for Simd<msizex8>

source§

fn bitmask(self) -> u64

A bit mask representing the boolean state of each lanes of self. Read more
source§

fn and(self) -> bool

Lane-wise bitwise and of the vector elements.
source§

fn or(self) -> bool

Lane-wise bitwise or of the vector elements.
source§

fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.
source§

fn all(self) -> bool

Are all vector lanes true?
source§

fn any(self) -> bool

Is any vector lane true?
source§

fn none(self) -> bool

Are all vector lanes false?
source§

fn if_else<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_value() depending on the lanes of self. Read more
source§

fn if_else2<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_value() depending on the lanes of self and else_if.0(). Read more
source§

fn if_else3<Res: SimdValue<SimdBool = Self>>( self, if_value: impl FnOnce() -> Res, else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_else_if: (impl FnOnce() -> Self, impl FnOnce() -> Res), else_value: impl FnOnce() -> Res ) -> Res

Merges the value of if_value() and else_if.1() and else_else_if.1() and else_value() depending on the lanes of self and else_if.0() and else_else_if.0(). Read more
source§

impl SimdComplexField for Simd<f32x16>

§

type SimdRealField = Simd<Simd<[f32; 16]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Simd<f32x2>

§

type SimdRealField = Simd<Simd<[f32; 2]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Simd<f32x4>

§

type SimdRealField = Simd<Simd<[f32; 4]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Simd<f32x8>

§

type SimdRealField = Simd<Simd<[f32; 8]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Simd<f64x2>

§

type SimdRealField = Simd<Simd<[f64; 2]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Simd<f64x4>

§

type SimdRealField = Simd<Simd<[f64; 4]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdComplexField for Simd<f64x8>

§

type SimdRealField = Simd<Simd<[f64; 8]>>

Type of the coefficients of a complex number.
source§

fn simd_horizontal_sum(self) -> Self::Element

Computes the sum of all the lanes of self.
source§

fn simd_horizontal_product(self) -> Self::Element

Computes the product of all the lanes of self.
source§

fn from_simd_real(re: Self::SimdRealField) -> Self

Builds a pure-real complex number from the given value.
source§

fn simd_real(self) -> Self::SimdRealField

The real part of this complex number.
source§

fn simd_imaginary(self) -> Self::SimdRealField

The imaginary part of this complex number.
source§

fn simd_norm1(self) -> Self::SimdRealField

The sum of the absolute value of this complex number’s real and imaginary part.
source§

fn simd_modulus(self) -> Self::SimdRealField

The modulus of this complex number.
source§

fn simd_modulus_squared(self) -> Self::SimdRealField

The squared modulus of this complex number.
source§

fn simd_argument(self) -> Self::SimdRealField

The argument of this complex number.
source§

fn simd_to_exp(self) -> (Self::SimdRealField, Self)

The exponential form of this complex number: (modulus, e^{i arg})
source§

fn simd_recip(self) -> Self

source§

fn simd_conjugate(self) -> Self

source§

fn simd_scale(self, factor: Self::SimdRealField) -> Self

Multiplies this complex number by factor.
source§

fn simd_unscale(self, factor: Self::SimdRealField) -> Self

Divides this complex number by factor.
source§

fn simd_floor(self) -> Self

source§

fn simd_ceil(self) -> Self

source§

fn simd_round(self) -> Self

source§

fn simd_trunc(self) -> Self

source§

fn simd_fract(self) -> Self

source§

fn simd_abs(self) -> Self

The absolute value of this complex number: self / self.signum(). Read more
source§

fn simd_signum(self) -> Self

The exponential part of this complex number: self / self.modulus()
source§

fn simd_mul_add(self, a: Self, b: Self) -> Self

source§

fn simd_powi(self, n: i32) -> Self

source§

fn simd_powf(self, n: Self) -> Self

source§

fn simd_powc(self, n: Self) -> Self

source§

fn simd_sqrt(self) -> Self

source§

fn simd_exp(self) -> Self

source§

fn simd_exp2(self) -> Self

source§

fn simd_exp_m1(self) -> Self

source§

fn simd_ln_1p(self) -> Self

source§

fn simd_ln(self) -> Self

source§

fn simd_log(self, base: Self) -> Self

source§

fn simd_log2(self) -> Self

source§

fn simd_log10(self) -> Self

source§

fn simd_cbrt(self) -> Self

source§

fn simd_hypot(self, other: Self) -> Self::SimdRealField

Computes (self.conjugate() * self + other.conjugate() * other).sqrt()
source§

fn simd_sin(self) -> Self

source§

fn simd_cos(self) -> Self

source§

fn simd_tan(self) -> Self

source§

fn simd_asin(self) -> Self

source§

fn simd_acos(self) -> Self

source§

fn simd_atan(self) -> Self

source§

fn simd_sin_cos(self) -> (Self, Self)

source§

fn simd_sinh(self) -> Self

source§

fn simd_cosh(self) -> Self

source§

fn simd_tanh(self) -> Self

source§

fn simd_asinh(self) -> Self

source§

fn simd_acosh(self) -> Self

source§

fn simd_atanh(self) -> Self

source§

fn simd_to_polar(self) -> (Self::SimdRealField, Self::SimdRealField)

The polar form of this complex number: (modulus, arg)
source§

fn simd_sinh_cosh(self) -> (Self, Self)

source§

fn simd_sinc(self) -> Self

Cardinal sine
source§

fn simd_sinhc(self) -> Self

source§

fn simd_cosc(self) -> Self

Cardinal cos
source§

fn simd_coshc(self) -> Self

source§

impl SimdPartialOrd for Simd<f32x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<f32x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<f32x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<f32x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<f64x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<f64x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<f64x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i128x1>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i128x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i128x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i16x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i16x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i16x32>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i16x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i16x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i32x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i32x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i32x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i32x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i64x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i64x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i64x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i8x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i8x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i8x32>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i8x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i8x64>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<i8x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<isizex2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<isizex4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<isizex8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u128x1>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u128x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u128x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u16x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u16x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u16x32>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u16x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u16x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u32x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u32x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u32x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u32x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u64x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u64x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u64x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u8x16>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u8x2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u8x32>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u8x4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u8x64>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<u8x8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<usizex2>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<usizex4>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdPartialOrd for Simd<usizex8>

source§

fn simd_gt(self, other: Self) -> Self::SimdBool

Lanewise greater than > comparison.
source§

fn simd_lt(self, other: Self) -> Self::SimdBool

Lanewise less than < comparison.
source§

fn simd_ge(self, other: Self) -> Self::SimdBool

Lanewise greater or equal >= comparison.
source§

fn simd_le(self, other: Self) -> Self::SimdBool

Lanewise less or equal <= comparison.
source§

fn simd_eq(self, other: Self) -> Self::SimdBool

Lanewise equal == comparison.
source§

fn simd_ne(self, other: Self) -> Self::SimdBool

Lanewise not equal != comparison.
source§

fn simd_max(self, other: Self) -> Self

Lanewise max value.
source§

fn simd_min(self, other: Self) -> Self

Lanewise min value.
source§

fn simd_clamp(self, min: Self, max: Self) -> Self

Clamps each lane of self between the corresponding lane of min and max.
source§

fn simd_horizontal_min(self) -> Self::Element

The min value among all lanes of self.
source§

fn simd_horizontal_max(self) -> Self::Element

The max value among all lanes of self.
source§

impl SimdRealField for Simd<f32x16>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdRealField for Simd<f32x2>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdRealField for Simd<f32x4>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdRealField for Simd<f32x8>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdRealField for Simd<f64x2>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdRealField for Simd<f64x4>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdRealField for Simd<f64x8>

source§

fn simd_atan2(self, other: Self) -> Self

source§

fn simd_copysign(self, sign: Self) -> Self

Copies the sign of sign to self. Read more
source§

fn simd_default_epsilon() -> Self

source§

fn simd_pi() -> Self

source§

fn simd_two_pi() -> Self

source§

fn simd_frac_pi_2() -> Self

source§

fn simd_frac_pi_3() -> Self

source§

fn simd_frac_pi_4() -> Self

source§

fn simd_frac_pi_6() -> Self

source§

fn simd_frac_pi_8() -> Self

source§

fn simd_frac_1_pi() -> Self

source§

fn simd_frac_2_pi() -> Self

source§

fn simd_frac_2_sqrt_pi() -> Self

source§

fn simd_e() -> Self

source§

fn simd_log2_e() -> Self

source§

fn simd_log10_e() -> Self

source§

fn simd_ln_2() -> Self

source§

fn simd_ln_10() -> Self

source§

impl SimdSigned for Simd<f32x16>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdSigned for Simd<f32x2>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdSigned for Simd<f32x4>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdSigned for Simd<f32x8>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdSigned for Simd<f64x2>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdSigned for Simd<f64x4>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdSigned for Simd<f64x8>

source§

fn simd_abs(&self) -> Self

The absolute value of each lane of self.
source§

fn simd_abs_sub(&self, other: &Self) -> Self

The absolute difference of each lane of self. Read more
source§

fn simd_signum(&self) -> Self

The signum of each lane of Self.
source§

fn is_simd_positive(&self) -> Self::SimdBool

Tests which lane is positive.
source§

fn is_simd_negative(&self) -> Self::SimdBool

Tests which lane is negative.
source§

impl SimdValue for Simd<f32x16>

§

type Element = f32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<f32x2>

§

type Element = f32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<f32x4>

§

type Element = f32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<f32x8>

§

type Element = f32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<f64x2>

§

type Element = f64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<f64x4>

§

type Element = f64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<f64x8>

§

type Element = f64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i128x1>

§

type Element = i128

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 1]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i128x2>

§

type Element = i128

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i128x4>

§

type Element = i128

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i16x16>

§

type Element = i16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i16x2>

§

type Element = i16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i16x32>

§

type Element = i16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 32]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i16x4>

§

type Element = i16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i16x8>

§

type Element = i16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i32x16>

§

type Element = i32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i32x2>

§

type Element = i32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i32x4>

§

type Element = i32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i32x8>

§

type Element = i32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i64x2>

§

type Element = i64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i64x4>

§

type Element = i64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i64x8>

§

type Element = i64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i8x16>

§

type Element = i8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i8x2>

§

type Element = i8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i8x32>

§

type Element = i8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 32]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i8x4>

§

type Element = i8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i8x64>

§

type Element = i8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 64]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<i8x8>

§

type Element = i8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<isizex2>

§

type Element = isize

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<isizex4>

§

type Element = isize

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<isizex8>

§

type Element = isize

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m128x1>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 1]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m128x2>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m128x4>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m16x16>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m16x2>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m16x32>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 32]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m16x4>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m16x8>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m32x16>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m32x2>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m32x4>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m32x8>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m64x2>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m64x4>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m64x8>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m8x16>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m8x2>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m8x32>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 32]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m8x4>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m8x64>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 64]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<m8x8>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<msizex2>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<msizex4>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<msizex8>

§

type Element = bool

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u128x1>

§

type Element = u128

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 1]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u128x2>

§

type Element = u128

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u128x4>

§

type Element = u128

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m128; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u16x16>

§

type Element = u16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u16x2>

§

type Element = u16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u16x32>

§

type Element = u16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 32]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u16x4>

§

type Element = u16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u16x8>

§

type Element = u16

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m16; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u32x16>

§

type Element = u32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u32x2>

§

type Element = u32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u32x4>

§

type Element = u32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u32x8>

§

type Element = u32

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m32; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u64x2>

§

type Element = u64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u64x4>

§

type Element = u64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u64x8>

§

type Element = u64

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m64; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u8x16>

§

type Element = u8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 16]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u8x2>

§

type Element = u8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u8x32>

§

type Element = u8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 32]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u8x4>

§

type Element = u8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u8x64>

§

type Element = u8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 64]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<u8x8>

§

type Element = u8

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[m8; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<usizex2>

§

type Element = usize

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 2]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<usizex4>

§

type Element = usize

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 4]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl SimdValue for Simd<usizex8>

§

type Element = usize

The type of the elements of each lane of this SIMD value.
§

type SimdBool = Simd<Simd<[msize; 8]>>

Type of the result of comparing two SIMD values like self.
source§

fn lanes() -> usize

The number of lanes of this SIMD value.
source§

fn splat(val: Self::Element) -> Self

Initializes an SIMD value with each lanes set to val.
source§

fn extract(&self, i: usize) -> Self::Element

Extracts the i-th lane of self. Read more
source§

unsafe fn extract_unchecked(&self, i: usize) -> Self::Element

Extracts the i-th lane of self without bound-checking.
source§

fn replace(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val. Read more
source§

unsafe fn replace_unchecked(&mut self, i: usize, val: Self::Element)

Replaces the i-th lane of self by val without bound-checking.
source§

fn select(self, cond: Self::SimdBool, other: Self) -> Self

Merges self and other depending on the lanes of cond. Read more
source§

fn map_lanes(self, f: impl Fn(Self::Element) -> Self::Element) -> Selfwhere Self: Clone,

Applies a function to each lane of self. Read more
source§

fn zip_map_lanes( self, b: Self, f: impl Fn(Self::Element, Self::Element) -> Self::Element ) -> Selfwhere Self: Clone,

Applies a function to each lane of self paired with the corresponding lane of b. Read more
source§

impl Sub<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

§

type Output = Simd<Simd<[f32; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

§

type Output = Simd<Simd<[f32; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

§

type Output = Simd<Simd<[f32; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

§

type Output = Simd<Simd<[f32; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

§

type Output = Simd<Simd<[f64; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

§

type Output = Simd<Simd<[f64; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

§

type Output = Simd<Simd<[f64; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

§

type Output = Simd<Simd<[i128; 1]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

§

type Output = Simd<Simd<[i128; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

§

type Output = Simd<Simd<[i128; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

§

type Output = Simd<Simd<[i16; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

§

type Output = Simd<Simd<[i16; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

§

type Output = Simd<Simd<[i16; 32]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

§

type Output = Simd<Simd<[i16; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

§

type Output = Simd<Simd<[i16; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

§

type Output = Simd<Simd<[i32; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

§

type Output = Simd<Simd<[i32; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

§

type Output = Simd<Simd<[i32; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

§

type Output = Simd<Simd<[i32; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

§

type Output = Simd<Simd<[i64; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

§

type Output = Simd<Simd<[i64; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

§

type Output = Simd<Simd<[i64; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

§

type Output = Simd<Simd<[i8; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

§

type Output = Simd<Simd<[i8; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

§

type Output = Simd<Simd<[i8; 32]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

§

type Output = Simd<Simd<[i8; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

§

type Output = Simd<Simd<[i8; 64]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

§

type Output = Simd<Simd<[i8; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

§

type Output = Simd<Simd<[isize; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

§

type Output = Simd<Simd<[isize; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

§

type Output = Simd<Simd<[isize; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

§

type Output = Simd<Simd<[u128; 1]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

§

type Output = Simd<Simd<[u128; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

§

type Output = Simd<Simd<[u128; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

§

type Output = Simd<Simd<[u16; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

§

type Output = Simd<Simd<[u16; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

§

type Output = Simd<Simd<[u16; 32]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

§

type Output = Simd<Simd<[u16; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

§

type Output = Simd<Simd<[u16; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

§

type Output = Simd<Simd<[u32; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

§

type Output = Simd<Simd<[u32; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

§

type Output = Simd<Simd<[u32; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

§

type Output = Simd<Simd<[u32; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

§

type Output = Simd<Simd<[u64; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

§

type Output = Simd<Simd<[u64; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

§

type Output = Simd<Simd<[u64; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

§

type Output = Simd<Simd<[u8; 16]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

§

type Output = Simd<Simd<[u8; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

§

type Output = Simd<Simd<[u8; 32]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

§

type Output = Simd<Simd<[u8; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

§

type Output = Simd<Simd<[u8; 64]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

§

type Output = Simd<Simd<[u8; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

§

type Output = Simd<Simd<[usize; 2]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

§

type Output = Simd<Simd<[usize; 4]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl Sub<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

§

type Output = Simd<Simd<[usize; 8]>>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl SubAssign<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl SubAssign<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for d128where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<d128> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> d128

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for f32where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<f32> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> f32

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for f64where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<f64> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> f64

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for i16where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<i16> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> i16

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for i32where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<i32> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> i32

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for i64where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<i64> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> i64

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for i8where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<i8> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> i8

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for isizewhere Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<isize> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> isize

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for u16where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<u16> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> u16

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for u32where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<u32> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> u32

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for u64where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<u64> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> u64

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for u8where Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<u8> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> u8

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl<N2> SubsetOf<Simd<N2>> for usizewhere Simd<N2>: SimdValue + Copy, <Simd<N2> as SimdValue>::Element: SupersetOf<usize> + PartialEq,

source§

fn to_superset(&self) -> Simd<N2>

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset_unchecked(element: &Simd<N2>) -> usize

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(c: &Simd<N2>) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

fn from_superset(element: &T) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

impl SubsetOf<Simd<Simd<[f32; 16]>>> for Simd<f32x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[f32; 2]>>> for Simd<f32x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[f32; 4]>>> for Simd<f32x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[f32; 8]>>> for Simd<f32x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[f64; 2]>>> for Simd<f64x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[f64; 4]>>> for Simd<f64x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[f64; 8]>>> for Simd<f64x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i128; 1]>>> for Simd<i128x1>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i128; 2]>>> for Simd<i128x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i128; 4]>>> for Simd<i128x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i16; 16]>>> for Simd<i16x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i16; 2]>>> for Simd<i16x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i16; 32]>>> for Simd<i16x32>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i16; 4]>>> for Simd<i16x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i16; 8]>>> for Simd<i16x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i32; 16]>>> for Simd<i32x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i32; 2]>>> for Simd<i32x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i32; 4]>>> for Simd<i32x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i32; 8]>>> for Simd<i32x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i64; 2]>>> for Simd<i64x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i64; 4]>>> for Simd<i64x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i64; 8]>>> for Simd<i64x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i8; 16]>>> for Simd<i8x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i8; 2]>>> for Simd<i8x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i8; 32]>>> for Simd<i8x32>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i8; 4]>>> for Simd<i8x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i8; 64]>>> for Simd<i8x64>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[i8; 8]>>> for Simd<i8x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[isize; 2]>>> for Simd<isizex2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[isize; 4]>>> for Simd<isizex4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[isize; 8]>>> for Simd<isizex8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u128; 1]>>> for Simd<u128x1>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u128; 2]>>> for Simd<u128x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u128; 4]>>> for Simd<u128x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u16; 16]>>> for Simd<u16x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u16; 2]>>> for Simd<u16x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u16; 32]>>> for Simd<u16x32>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u16; 4]>>> for Simd<u16x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u16; 8]>>> for Simd<u16x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u32; 16]>>> for Simd<u32x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u32; 2]>>> for Simd<u32x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u32; 4]>>> for Simd<u32x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u32; 8]>>> for Simd<u32x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u64; 2]>>> for Simd<u64x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u64; 4]>>> for Simd<u64x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u64; 8]>>> for Simd<u64x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u8; 16]>>> for Simd<u8x16>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u8; 2]>>> for Simd<u8x2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u8; 32]>>> for Simd<u8x32>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u8; 4]>>> for Simd<u8x4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u8; 64]>>> for Simd<u8x64>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[u8; 8]>>> for Simd<u8x8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[usize; 2]>>> for Simd<usizex2>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[usize; 4]>>> for Simd<usizex4>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl SubsetOf<Simd<Simd<[usize; 8]>>> for Simd<usizex8>

source§

fn to_superset(&self) -> Self

The inclusion map: converts self to the equivalent element of its superset.
source§

fn from_superset(element: &Self) -> Option<Self>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn from_superset_unchecked(element: &Self) -> Self

Use with care! Same as self.to_superset but without any property checks. Always succeeds.
source§

fn is_in_subset(_: &Self) -> bool

Checks if element is actually part of the subset Self (and can be converted to it).
source§

impl Zero for Simd<f32x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<f32x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<f32x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<f32x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<f64x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<f64x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<f64x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i128x1>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i128x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i128x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i16x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i16x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i16x32>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i16x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i16x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i32x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i32x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i32x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i32x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i64x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i64x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i64x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i8x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i8x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i8x32>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i8x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i8x64>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<i8x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<isizex2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<isizex4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<isizex8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u128x1>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u128x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u128x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u16x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u16x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u16x32>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u16x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u16x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u32x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u32x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u32x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u32x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u64x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u64x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u64x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u8x16>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u8x2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u8x32>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u8x4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u8x64>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<u8x8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<usizex2>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<usizex4>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zero for Simd<usizex8>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl<N: Copy> Copy for Simd<N>

source§

impl<N: Eq> Eq for Simd<N>

source§

impl Field for Simd<f32x16>

source§

impl Field for Simd<f32x2>

source§

impl Field for Simd<f32x4>

source§

impl Field for Simd<f32x8>

source§

impl Field for Simd<f64x2>

source§

impl Field for Simd<f64x4>

source§

impl Field for Simd<f64x8>

source§

impl PrimitiveSimdValue for Simd<f32x16>

source§

impl PrimitiveSimdValue for Simd<f32x2>

source§

impl PrimitiveSimdValue for Simd<f32x4>

source§

impl PrimitiveSimdValue for Simd<f32x8>

source§

impl PrimitiveSimdValue for Simd<f64x2>

source§

impl PrimitiveSimdValue for Simd<f64x4>

source§

impl PrimitiveSimdValue for Simd<f64x8>

source§

impl PrimitiveSimdValue for Simd<i128x1>

source§

impl PrimitiveSimdValue for Simd<i128x2>

source§

impl PrimitiveSimdValue for Simd<i128x4>

source§

impl PrimitiveSimdValue for Simd<i16x16>

source§

impl PrimitiveSimdValue for Simd<i16x2>

source§

impl PrimitiveSimdValue for Simd<i16x32>

source§

impl PrimitiveSimdValue for Simd<i16x4>

source§

impl PrimitiveSimdValue for Simd<i16x8>

source§

impl PrimitiveSimdValue for Simd<i32x16>

source§

impl PrimitiveSimdValue for Simd<i32x2>

source§

impl PrimitiveSimdValue for Simd<i32x4>

source§

impl PrimitiveSimdValue for Simd<i32x8>

source§

impl PrimitiveSimdValue for Simd<i64x2>

source§

impl PrimitiveSimdValue for Simd<i64x4>

source§

impl PrimitiveSimdValue for Simd<i64x8>

source§

impl PrimitiveSimdValue for Simd<i8x16>

source§

impl PrimitiveSimdValue for Simd<i8x2>

source§

impl PrimitiveSimdValue for Simd<i8x32>

source§

impl PrimitiveSimdValue for Simd<i8x4>

source§

impl PrimitiveSimdValue for Simd<i8x64>

source§

impl PrimitiveSimdValue for Simd<i8x8>

source§

impl PrimitiveSimdValue for Simd<isizex2>

source§

impl PrimitiveSimdValue for Simd<isizex4>

source§

impl PrimitiveSimdValue for Simd<isizex8>

source§

impl PrimitiveSimdValue for Simd<m128x1>

source§

impl PrimitiveSimdValue for Simd<m128x2>

source§

impl PrimitiveSimdValue for Simd<m128x4>

source§

impl PrimitiveSimdValue for Simd<m16x16>

source§

impl PrimitiveSimdValue for Simd<m16x2>

source§

impl PrimitiveSimdValue for Simd<m16x32>

source§

impl PrimitiveSimdValue for Simd<m16x4>

source§

impl PrimitiveSimdValue for Simd<m16x8>

source§

impl PrimitiveSimdValue for Simd<m32x16>

source§

impl PrimitiveSimdValue for Simd<m32x2>

source§

impl PrimitiveSimdValue for Simd<m32x4>

source§

impl PrimitiveSimdValue for Simd<m32x8>

source§

impl PrimitiveSimdValue for Simd<m64x2>

source§

impl PrimitiveSimdValue for Simd<m64x4>

source§

impl PrimitiveSimdValue for Simd<m64x8>

source§

impl PrimitiveSimdValue for Simd<m8x16>

source§

impl PrimitiveSimdValue for Simd<m8x2>

source§

impl PrimitiveSimdValue for Simd<m8x32>

source§

impl PrimitiveSimdValue for Simd<m8x4>

source§

impl PrimitiveSimdValue for Simd<m8x64>

source§

impl PrimitiveSimdValue for Simd<m8x8>

source§

impl PrimitiveSimdValue for Simd<msizex2>

source§

impl PrimitiveSimdValue for Simd<msizex4>

source§

impl PrimitiveSimdValue for Simd<msizex8>

source§

impl PrimitiveSimdValue for Simd<u128x1>

source§

impl PrimitiveSimdValue for Simd<u128x2>

source§

impl PrimitiveSimdValue for Simd<u128x4>

source§

impl PrimitiveSimdValue for Simd<u16x16>

source§

impl PrimitiveSimdValue for Simd<u16x2>

source§

impl PrimitiveSimdValue for Simd<u16x32>

source§

impl PrimitiveSimdValue for Simd<u16x4>

source§

impl PrimitiveSimdValue for Simd<u16x8>

source§

impl PrimitiveSimdValue for Simd<u32x16>

source§

impl PrimitiveSimdValue for Simd<u32x2>

source§

impl PrimitiveSimdValue for Simd<u32x4>

source§

impl PrimitiveSimdValue for Simd<u32x8>

source§

impl PrimitiveSimdValue for Simd<u64x2>

source§

impl PrimitiveSimdValue for Simd<u64x4>

source§

impl PrimitiveSimdValue for Simd<u64x8>

source§

impl PrimitiveSimdValue for Simd<u8x16>

source§

impl PrimitiveSimdValue for Simd<u8x2>

source§

impl PrimitiveSimdValue for Simd<u8x32>

source§

impl PrimitiveSimdValue for Simd<u8x4>

source§

impl PrimitiveSimdValue for Simd<u8x64>

source§

impl PrimitiveSimdValue for Simd<u8x8>

source§

impl PrimitiveSimdValue for Simd<usizex2>

source§

impl PrimitiveSimdValue for Simd<usizex4>

source§

impl PrimitiveSimdValue for Simd<usizex8>

source§

impl<N> StructuralEq for Simd<N>

source§

impl<N> StructuralPartialEq for Simd<N>

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for Simd<N>where N: RefUnwindSafe,

§

impl<N> Send for Simd<N>where N: Send,

§

impl<N> Sync for Simd<N>where N: Sync,

§

impl<N> Unpin for Simd<N>where N: Unpin,

§

impl<N> UnwindSafe for Simd<N>where N: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dstwhere T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, U> Cast<U> for Twhere U: FromCast<T>,

source§

fn cast(self) -> U

Numeric cast from self to T.
source§

impl<Src, Dst> CastFrom<Src> for Dstwhere Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

source§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromBits<T> for T

source§

fn from_bits(t: T) -> T

Safe lossless bitwise transmute from T to Self.
source§

impl<T> FromCast<T> for T

source§

fn from_cast(t: T) -> T

Numeric cast from T to Self.
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> IntoBits<U> for Twhere U: FromBits<T>,

source§

fn into_bits(self) -> U

Safe lossless bitwise transmute from self to T.
source§

impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Srcwhere Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dstwhere T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dstwhere T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dstwhere T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> NumAssign for Twhere T: Num + NumAssignOps<T>,

source§

impl<T, Rhs> NumAssignOps<Rhs> for Twhere T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for Twhere T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,