Calculates the addition of two functions.
The first function
The second function
const f = Chalkboard.real.add(Chalkboard.real.define((x) => x), Chalkboard.real.define((x) => x * x));const y = Chalkboard.real.val(f, 2); // Returns 6 Copy
const f = Chalkboard.real.add(Chalkboard.real.define((x) => x), Chalkboard.real.define((x) => x * x));const y = Chalkboard.real.val(f, 2); // Returns 6
Calculates the addition of two functions.