Call this object. This object must either be a function, or have a metatable providing the ___call metamethod.
Perform a Lua method call on this object.
Compare the referenced object to another value with Lua's equality semantics. If the _other value is not a Lua reference wrapper, it will go through the regular D to Lua conversion process first. To check for nil, compare against the special constant "nil".
Index this object. This object must either be a table, or have a metatable providing the ___index metamethod.
Underlying Lua reference. LuaDynamic does not sub-type LuaObject - qualify access to this reference explicitly.
Represents a reference to a Lua value of any type. Supports all operations you can perform on values in Lua.