Trait Native

Source
pub trait Native<Token> {
    type Width: Width;
}
Expand description

Indicates the widest native vector.

Required Associated Types§

Implementations on Foreign Types§

Source§

impl Native<Generic> for f32

Source§

impl Native<Generic> for f64

Source§

impl Native<Generic> for Complex<f32>

Source§

impl Native<Generic> for Complex<f64>

Source§

impl Native<Avx> for f32

Source§

impl Native<Avx> for f64

Source§

impl Native<Avx> for Complex<f32>

Source§

impl Native<Avx> for Complex<f64>

Source§

impl Native<Sse> for f32

Source§

impl Native<Sse> for f64

Source§

impl Native<Sse> for Complex<f32>

Source§

impl Native<Sse> for Complex<f64>

Source§

impl<T, Token> Native<Token> for [T]
where T: Native<Token>,

Source§

type Width = <T as Native<Token>>::Width

Implementors§