pub unsafe trait MappedGenericSequence<T, U>: GenericSequence<T> {
type Mapped: GenericSequence<U, Length = Self::Length>;
}
Expand description
Defines the relationship between one generic sequence and another,
for operations such as map
and zip
.
Required Associated Types§
sourcetype Mapped: GenericSequence<U, Length = Self::Length>
type Mapped: GenericSequence<U, Length = Self::Length>
Mapped sequence type
Implementations on Foreign Types§
source§impl<T, U, N: ArrayLength> MappedGenericSequence<T, U> for Box<GenericArray<T, N>>
Available on crate feature alloc
only.
impl<T, U, N: ArrayLength> MappedGenericSequence<T, U> for Box<GenericArray<T, N>>
Available on crate feature
alloc
only.