pub fn compose_semifinite<K: ArrayKind, T>(
lhs: &FiniteFunction<K>,
rhs: &SemifiniteFunction<K, T>,
) -> Option<SemifiniteFunction<K, T>>
Expand description
As a special case, a we can precompose a FiniteFunction
with a SemifiniteFunction
.
This is also overloaded with the >>
syntax.