IsNil verifies that the value at index is nil. http://www.lua.org/manual/5.2/manual.html#lua_isnil
(index int)
| 1504 | // |
| 1505 | // http://www.lua.org/manual/5.2/manual.html#lua_isnil |
| 1506 | func (l *State) IsNil(index int) bool { return l.TypeOf(index) == TypeNil } |
| 1507 | |
| 1508 | // IsBoolean verifies that the value at index is a boolean. |
| 1509 | // |
no test coverage detected