IsThread verifies that the value at index is a thread. http://www.lua.org/manual/5.2/manual.html#lua_isthread
(index int)
| 1514 | // |
| 1515 | // http://www.lua.org/manual/5.2/manual.html#lua_isthread |
| 1516 | func (l *State) IsThread(index int) bool { return l.TypeOf(index) == TypeThread } |
| 1517 | |
| 1518 | // IsNone verifies that the value at index is not valid. |
| 1519 | // |