
varargs mixed call_other(mixed obj, string function, mixed args...)
Only non-private functions can be called with call_other(). If the function is static, the object in which the function is called must be the same as the object from which the function is called, or the call will fail.
Any additional arguments to call_other() will be passed on to the called function.
In LPC, obj->func(arg1, arg2, argn) can be used as a shorthand for call_other(obj, "func", arg1, arg2, argn).
Calling a function that does not exist, or a function that cannot be called with call_other() because it is private or static, does not result in an error but returns the value 0.
If the number of existing objects is equal to the value of the ST_OTABSIZE field of the array returned by status(), where ST_OTABSIZE is defined in the include file <status.h>, attempting to compile a new object will crash the system.
HTMLised 1998 Greg Lewis (glewis@maths.adelaide.edu.au)