Trait generic_array::sequence::Split
source · pub unsafe trait Split<T, K>: GenericSequence<T>where
K: ArrayLength<T>,{
type First: GenericSequence<T>;
type Second: GenericSequence<T>;
// Required method
fn split(self) -> (Self::First, Self::Second);
}
Expand description
Defines a GenericSequence
that can be split into two parts at a given pivot index.
Required Associated Types§
sourcetype First: GenericSequence<T>
type First: GenericSequence<T>
First part of the resulting split array
sourcetype Second: GenericSequence<T>
type Second: GenericSequence<T>
Second part of the resulting split array
Required Methods§
Object Safety§
This trait is not object safe.