pub trait Compose<Inner: LinearMap>: LinearMap<Source = Inner::Dest> {
type Result: LinearMap<Source = Inner::Source, Dest = Self::Dest>;
}Expand description
Composition of two LinearMaps, Self ∘ Inner.
If Self maps from B to C, and Inner maps from A to B,
Self::Result maps from A to C.