Struct ssimd::i64x2 [] [src]

#[repr(packed)]
pub struct i64x2(_, _);

Methods

impl i64x2
[src]

[src]

Create new instance

[src]

Create new instance with all lanes set to a value

[src]

Get the idxth lane value

[src]

Replace the idxth lane with new value

[src]

Load instance from an array

[src]

Store self to an array

[src]

Compare if equal

[src]

Compare if not equal

[src]

Compare if less than

[src]

Compare if less than or equal

[src]

Compare if greater than

[src]

Compare if greater than or equal

[src]

Get max values by lane

[src]

Get min values by lane

impl i64x2
[src]

[src]

Select between elements of then and else_, based on the corresponding element of self. Equivalent to: T::new(if self.0 { then.0 } else { else_.0 }, if self.1 { then.1 } else { else_.1 }, ...)

impl i64x2
[src]

[src]

impl i64x2
[src]

[src]

impl i64x2
[src]

[src]

Trait Implementations

impl Debug for i64x2
[src]

[src]

Formats the value using the given formatter.

impl Clone for i64x2
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for i64x2
[src]

impl Add for i64x2
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub for i64x2
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Mul for i64x2
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Div for i64x2
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl BitAnd for i64x2
[src]

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl BitOr for i64x2
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl BitXor for i64x2
[src]

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl Not for i64x2
[src]

The resulting type after applying the ! operator.

[src]

Performs the unary ! operation.

impl Shl<usize> for i64x2
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<usize> for i64x2
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.