Hi!
In mp-wasm, I was surprised by the non-curried status of the fac() function:
mpWasm.mpf(3).fac()
// Uncaught TypeError: mpWasm.mpf(...).fac is not a function
Browsing through the code, I notice this:
if (name !== "fac") curriedOps.push(name);
Is there a fundamental issue that prevents currying fac?
Hi!
In mp-wasm, I was surprised by the non-curried status of the
fac()function:Browsing through the code, I notice this:
Is there a fundamental issue that prevents currying fac?