Calculates the negation of a function.
The function
const f = Chalkboard.real.negate(Chalkboard.real.define((x) => x * x));const y = Chalkboard.real.val(f, 3); // Returns -9 Copy
const f = Chalkboard.real.negate(Chalkboard.real.define((x) => x * x));const y = Chalkboard.real.val(f, 3); // Returns -9
Calculates the negation of a function.