Struct simd::x86::sse2::bool64fx2 [] [src]

pub struct bool64fx2(_, _);

A SIMD boolean vector for length-2 vectors of 64-bit floats.

Methods

impl bool64fx2
[src]

fn to_repr(self) -> i64x2

Convert to integer representation.

fn from_repr(x: i64x2) -> Self

Convert from integer representation.

fn new(x0: bool, x1: bool) -> bool64fx2

Create a new instance.

fn splat(x: bool) -> bool64fx2

Create a new instance where every lane has value x.

fn extract(self, idx: u32) -> bool

Extract the value of the idxth lane of self.

Panics

extract will panic if idx is out of bounds.

fn replace(self, idx: u32, elem: bool) -> Self

Return a new vector where the idxth lane is replaced by elem.

Panics

replace will panic if idx is out of bounds.

fn select<T: Simd<Bool=bool64fx2>>(self, then: T, else_: T) -> T

Select between elements of then and else_, based on the corresponding element of self.

This is equivalent to the following, but is possibly more efficient:

T::new(if self.extract(0) { then.extract(0) } else { else_.extract(0) },
       if self.extract(1) { then.extract(1) } else { else_.extract(1) },
       ...)

fn all(self) -> bool

Check if every element of self is true.

This is equivalent to the following, but is possibly more efficient:

self.extract(0) && self.extract(1) && ...

fn any(self) -> bool

Check if any element of self is true.

This is equivalent to the following, but is possibly more efficient:

self.extract(0) || self.extract(1) || ...

fn to_i(self) -> bool64ix2

Convert self to a boolean vector for interacting with integer vectors.

Trait Implementations

impl Simd for bool64fx2
[src]

type Bool = bool64fx2

The corresponding boolean vector type.

type Elem = bool64f

The element that this vector stores.

impl Clone for bool64fx2
[src]

fn clone(&self) -> Self

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Not for bool64fx2
[src]

type Output = Self

The resulting type after applying the ! operator

fn not(self) -> Self

The method for the unary ! operator

impl BitAnd for bool64fx2
[src]

type Output = Self

The resulting type after applying the & operator

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

The method for the & operator

impl BitOr for bool64fx2
[src]

type Output = Self

The resulting type after applying the | operator

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

The method for the | operator

impl BitXor for bool64fx2
[src]

type Output = Self

The resulting type after applying the ^ operator

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

The method for the ^ operator

impl Sse2Bool64fx2 for bool64fx2
[src]

fn move_mask(self) -> u32

impl AvxBool64fx2 for bool64fx2
[src]

Derived Implementations

impl Copy for bool64fx2
[src]

impl Debug for bool64fx2
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.