IsBoolean verifies that the value at index is a boolean. http://www.lua.org/manual/5.2/manual.html#lua_isboolean
(index int)
| 1509 | // |
| 1510 | // http://www.lua.org/manual/5.2/manual.html#lua_isboolean |
| 1511 | func (l *State) IsBoolean(index int) bool { return l.TypeOf(index) == TypeBoolean } |
| 1512 | |
| 1513 | // IsThread verifies that the value at index is a thread. |
| 1514 | // |