[][src]Trait agnes::access::FilterPerm

pub trait FilterPerm<P> {
    fn filter_perm(&self, predicate: P) -> Vec<usize>;
}

Trait providing method to provide an index permutation of values that match a predicate.

Required methods

fn filter_perm(&self, predicate: P) -> Vec<usize>

Returns the permutation indices of this field which match the specified predicate.

Loading content...

Implementors

impl<DI, P> FilterPerm<P> for DI where
    DI: DataIndex,
    P: FnMut(Value<&DI::DType>) -> bool
[src]

Loading content...