Calculates the value of a function at a value.
The function
The value
const f = Chalkboard.real.define((x) => x * x + 1);const y = Chalkboard.real.val(f, 3); // Returns 10 Copy
const f = Chalkboard.real.define((x) => x * x + 1);const y = Chalkboard.real.val(f, 3); // Returns 10
Calculates the value of a function at a value.