Trait simd::DoubleVector [−] [src]

pub unsafe trait DoubleVector: Vector {
    type Double;

    fn merge(self, other: Self) -> Self::Double;
}

SIMD vectors which can be merged with another of the same type to create one of double the length with the same elements.

Associated Types

type Double

Required Methods

fn merge(self, other: Self) -> Self::Double

Concatenate the elements of self and other into a single SIMD vector.

Implementors