[−][src]Trait generic_array::sequence::Split
Defines a GenericSequence
that can be split into two parts at a given pivot index.
Associated Types
type First: GenericSequence<T>
First part of the resulting split array
type Second: GenericSequence<T>
Second part of the resulting split array
Required Methods
fn split(self) -> (Self::First, Self::Second)
Splits an array at the given index, returning the separate parts of the array.
Implementors
impl<T, N, K> Split<T, K> for GenericArray<T, N> where
N: ArrayLength<T>,
K: ArrayLength<T>,
N: Sub<K>,
Diff<N, K>: ArrayLength<T>,
[src]
impl<T, N, K> Split<T, K> for GenericArray<T, N> where
N: ArrayLength<T>,
K: ArrayLength<T>,
N: Sub<K>,
Diff<N, K>: ArrayLength<T>,
type First = GenericArray<T, K>
type Second = GenericArray<T, Diff<N, K>>
fn split(self) -> (Self::First, Self::Second)
[src]
fn split(self) -> (Self::First, Self::Second)