Functional Composition
Syntax
Explanation
Performs functional composition on the two operands. Returns a function which passes its arguments to g
and then too f
.
The following are equivilent:
Examples
An example to change a zero-indexed function to a one-indexed function utilizing composition is:
Last updated