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

Function lua_isstring

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

Source from the content-addressed store, hash-verified

308
309
310LUA_API int lua_isstring (lua_State *L, int idx) {
311 const TValue *o = index2value(L, idx);
312 return (ttisstring(o) || cvt2str(o));
313}
314
315
316LUA_API int lua_isuserdata (lua_State *L, int idx) {

Callers 15

luaToStringFunction · 0.85
formatFunction · 0.85
range_formatFunction · 0.85
type_formatFunction · 0.85
update_configFunction · 0.85
diagnose_fileFunction · 0.85
spell_analysisFunction · 0.85
CreateFromLuaFunction · 0.85
update_name_style_configFunction · 0.85
name_style_analysisFunction · 0.85

Calls 1

index2valueFunction · 0.85

Tested by

no test coverage detected