[][src]Trait agnes::permute::UpdatePermutation

pub trait UpdatePermutation {
    fn update_permutation(self, order: &[usize]) -> Self;
}

Trait for updating the permutation of all data storage in a type.

Required methods

fn update_permutation(self, order: &[usize]) -> Self

Consumes this object returns a new object with a permutation updated according to the provided indices.

Loading content...

Implementors

impl UpdatePermutation for Nil[src]

impl<FrameFields, FramedStore> UpdatePermutation for DataFrame<FrameFields, FramedStore>[src]

impl<FrameIndex, Frame, Tail> UpdatePermutation for LVCons<FrameIndex, Frame, Tail> where
    Frame: Valued<Value = Frame>,
    ValueOf<Frame>: UpdatePermutation,
    Tail: UpdatePermutation
[src]

Loading content...