pub trait SplitAtwhere
Self: Sized,{
// Required method
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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Implementors§
impl<S, O> SplitAt for Chunked<S, O>
impl<S, T, I> SplitAt for Sparse<S, T, I>
impl<S: SplitAt + Set> SplitAt for ChunkedN<S>
impl<S: SplitAt + Set, N: Copy + Unsigned> SplitAt for UniChunked<S, U<N>>
impl<V> SplitAt for SubsetView<'_, V>
This impl enables Chunked Subsets