IsTable verifies that the value at index is a table. http://www.lua.org/manual/5.2/manual.html#lua_istable
(index int)
| 1494 | // |
| 1495 | // http://www.lua.org/manual/5.2/manual.html#lua_istable |
| 1496 | func (l *State) IsTable(index int) bool { return l.TypeOf(index) == TypeTable } |
| 1497 | |
| 1498 | // IsLightUserData verifies that the value at index is a light userdata. |
| 1499 | // |
no test coverage detected