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

pub trait UpdatePermutation {
    fn update_permutation(&mut self, _order: &[usize]) { ... }
}

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

Provided methods

fn update_permutation(&mut self, _order: &[usize])

Update the permutation with the providing indices.

Loading content...

Implementors

impl UpdatePermutation for Nil[src]

fn update_permutation(&mut self, _order: &[usize])[src]

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

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

Loading content...