Trait flatk::IsolateIndex[][src]

pub trait IsolateIndex<S> {
    type Output;
    fn try_isolate(self, set: S) -> Option<Self::Output>;
unsafe fn isolate_unchecked(self, set: S) -> Self::Output; }
Expand description

A helper trait like GetIndex but for Isolate types.

Associated Types

Required methods

Implementations on Foreign Types

Isolate a chunk of the given UniChunked collection.

Isolate a [begin..end) range of the given UniChunked collection.

Isolate a chunk of the given ChunkedN collection.

Isolate a [begin..end) range of the given ChunkedN collection.

Isolate a single chunk of the given Chunked collection.

Isolate a [begin..end) range of the given Chunked collection.

Isolating a range from a selection will preserve the original target data set.

Implementors