Trait generic_array::sequence::Split [−][src]
pub unsafe trait Split<T, K>: GenericSequence<T> where
K: ArrayLength<T>, { type First: GenericSequence<T>; type Second: GenericSequence<T>; fn split(self) -> (Self::First, Self::Second); }
Expand description
Defines a GenericSequence
that can be split into two parts at a given pivot index.
Associated Types
type First: GenericSequence<T>
type First: GenericSequence<T>
First part of the resulting split array
type Second: GenericSequence<T>
type Second: GenericSequence<T>
Second part of the resulting split array