builtin
Call a built-in function bypassing user overrides.
Syntax
Section titled “Syntax”[a1, a2, ...] = builtin(funcname, arg1, arg2, ...)Description
Section titled “Description”Calls the built-in function named by the string funcname with the given arguments. Bypasses any user-defined overload of the same name on the path. Useful inside class methods that override a built-in but need to delegate to the original.
Example
Section titled “Example”builtin('size', A) % built-in size, even if user defined size()See also
Section titled “See also”fevaleval— Execute a string as MathJet code.