Calculates the multiplication of two functions.
The first function
The second function
const f = Chalkboard.real.mul(Chalkboard.real.define((x) => x + 1), Chalkboard.real.define((x) => x - 1));const y = Chalkboard.real.val(f, 3); // Returns 8 Copy
const f = Chalkboard.real.mul(Chalkboard.real.define((x) => x + 1), Chalkboard.real.define((x) => x - 1));const y = Chalkboard.real.val(f, 3); // Returns 8
Calculates the multiplication of two functions.