nil

Special value representing the Lua type and value nil.

Nil nil;

Examples

Useful for clearing keys in a table:

lua["n"] = 1.23;
assert(lua.get!double("n") == 1.23);

lua["n"] = nil;
assert(lua["n"].type == LuaType.Nil);

Meta