Special value representing the Lua type and value nil.
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);
See Implementation
Special value representing the Lua type and value nil.