Trait generic_array::sequence::Split [−][src]
Defines a GenericSequence
that can be split into two parts at a given pivot index.
Associated Types
type First: GenericSequence<T>
[src]
First part of the resulting split array
type Second: GenericSequence<T>
[src]
Second part of the resulting split array
Required methods
fn split(self) -> (Self::First, Self::Second)
[src]
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]
N: ArrayLength<T>,
K: ArrayLength<T>,
N: Sub<K>,
Diff<N, K>: ArrayLength<T>,