Trait coins_bip32::ecdsa::signature::digest::block_buffer::generic_array::sequence::Split
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§
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