Compose two Functions.
auto f = RealFunction!(triple!int).get.compose(RealFunction!(increment!int).get); auto g = RealFunction!(increment!int).get.compose(RealFunction!(triple!int).get); assert (f(0) == 1); assert (f(1) == 4); assert (g(0) == 3); assert (g(1) == 6);
See Implementation
Compose two Functions.