ppv_lite86

Trait Vec4Ext

source
pub trait Vec4Ext<W> {
    // Required method
    fn transpose4(
        a: Self,
        b: Self,
        c: Self,
        d: Self,
    ) -> (Self, Self, Self, Self)
       where Self: Sized;
}
Expand description

Vec4 functions which may not be implemented yet for all Vec4 types. NOTE: functions in this trait may be moved to Vec4 in any patch release. To avoid breakage, import Vec4Ext only together with Vec4, and don’t qualify its methods.

Required Methods§

source

fn transpose4(a: Self, b: Self, c: Self, d: Self) -> (Self, Self, Self, Self)
where Self: Sized,

Implementors§