[][src]Trait flatk::chunked::IndexRange

pub trait IndexRange {
    fn index_range(&self, range: Range<usize>) -> Option<Range<usize>>;
}

Required methods

fn index_range(&self, range: Range<usize>) -> Option<Range<usize>>

Loading content...

Implementors

impl<O: AsRef<[usize]>> IndexRange for Offsets<O>[src]

fn index_range(&self, range: Range<usize>) -> Option<Range<usize>>[src]

Return the [begin..end) bound of the chunk at the given index.

impl<O: AsRef<[usize]>> IndexRange for SortedChunks<O>[src]

fn index_range(&self, range: Range<usize>) -> Option<Range<usize>>[src]

Return the [begin..end) bound of the chunk at the given index.

Loading content...