IsFunction verifies that the value at index is a function, either Go or Lua function. http://www.lua.org/manual/5.2/manual.html#lua_isfunction
(index int)
| 1489 | // |
| 1490 | // http://www.lua.org/manual/5.2/manual.html#lua_isfunction |
| 1491 | func (l *State) IsFunction(index int) bool { return l.TypeOf(index) == TypeFunction } |
| 1492 | |
| 1493 | // IsTable verifies that the value at index is a table. |
| 1494 | // |
no test coverage detected