Trait flatk::SplitAt[][src]

pub trait SplitAt where
    Self: Sized
{ fn split_at(self, mid: usize) -> (Self, Self); }
Expand description

A helper trait to split a set into two sets at a given index. This trait is used to implement iteration over ChunkedViews.

Required methods

Split self into two sets at the given midpoint. This function is analogous to <[T]>::split_at.

Implementations on Foreign Types

Implementors

This impl enables Chunked Subsets