IsNone verifies that the value at index is not valid. http://www.lua.org/manual/5.2/manual.html#lua_isnone
(index int)
| 1519 | // |
| 1520 | // http://www.lua.org/manual/5.2/manual.html#lua_isnone |
| 1521 | func (l *State) IsNone(index int) bool { return l.TypeOf(index) == TypeNone } |
| 1522 | |
| 1523 | // IsNoneOrNil verifies that the value at index is either nil or invalid. |
| 1524 | // |