pub trait MapInternWith: MapIntern {
// Required method
fn map_with_intern<F>(self, other: Self, f: F) -> Self
where F: FnMut(Self::Item, Self::Item) -> Self::Item;
}Expand description
Elementwise mapping of two containers of the same type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.