pub unsafe trait MappedGenericSequence<T, U>: GenericSequence<T>where
Self::Length: ArrayLength<U>,{
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
Object Safety§
This trait is not object safe.