Trait feanor_math::vector::vec_fn::IntoVectorFn

source ·
pub trait IntoVectorFn<T> {
    type Target: VectorFn<T>;

    // Required method
    fn into_fn(self) -> Self::Target;
}

Required Associated Types§

Required Methods§

source

fn into_fn(self) -> Self::Target

Implementations on Foreign Types§

source§

impl IntoVectorFn<usize> for Range<usize>

§

type Target = RangeFn

source§

fn into_fn(self) -> Self::Target

Implementors§

source§

impl<T, V> IntoVectorFn<T> for V
where T: Clone, V: VectorView<T>,

§

type Target = VectorViewFn<V, T>