MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_iscfunction

Function lua_iscfunction

third-party/lua-5.5.0/src/lapi.c:295–298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

293
294
295LUA_API int lua_iscfunction (lua_State *L, int idx) {
296 const TValue *o = index2value(L, idx);
297 return (ttislcf(o) || (ttisCclosure(o)));
298}
299
300
301LUA_API int lua_isinteger (lua_State *L, int idx) {

Callers 2

str_dumpFunction · 0.70
db_upvaluejoinFunction · 0.70

Calls 1

index2valueFunction · 0.70

Tested by

no test coverage detected