MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / lua_isstring

Function lua_isstring

ThirdParty/lua/lua/lapi.c:282–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280
281
282LUA_API int lua_isstring (lua_State *L, int idx) {
283 const TValue *o = index2addr(L, idx);
284 return (ttisstring(o) || cvt2str(o));
285}
286
287
288LUA_API int lua_isuserdata (lua_State *L, int idx) {

Callers 6

luaB_errorFunction · 0.85
generic_readerFunction · 0.85
add_valueFunction · 0.85
luaB_auxwrapFunction · 0.85
addfieldFunction · 0.85
findloaderFunction · 0.85

Calls 1

index2addrFunction · 0.85

Tested by

no test coverage detected