MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / lua_iscfunction

Function lua_iscfunction

3rd/lua-5.4.3/src/lapi.c:291–294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289
290
291LUA_API int lua_iscfunction (lua_State *L, int idx) {
292 const TValue *o = index2value(L, idx);
293 return (ttislcf(o) || (ttisCclosure(o)));
294}
295
296
297LUA_API int lua_isinteger (lua_State *L, int idx) {

Callers 1

db_upvaluejoinFunction · 0.85

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected