Class LuaFunction

Direct Known Subclasses:
JavaMethod.Overload, LibFunction, LuaClosure

public abstract class LuaFunction extends LuaValue
Base class for functions implemented in Java.

Direct subclass include org.luaj.vm2.lib.LibFunction which is the base class for all built-in library functions coded in Java, and LuaClosure, which represents a lua closure whose bytecode is interpreted when the function is invoked.

See Also: