IsNoneOrNil verifies that the value at index is either nil or invalid. http://www.lua.org/manual/5.2/manual.html#lua_isnonornil.
(index int)
| 1524 | // |
| 1525 | // http://www.lua.org/manual/5.2/manual.html#lua_isnonornil. |
| 1526 | func (l *State) IsNoneOrNil(index int) bool { return l.TypeOf(index) <= TypeNil } |
| 1527 | |
| 1528 | // PushGlobalTable pushes the global environment onto the stack. |
| 1529 | // |
no test coverage detected