MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_isstring

Function lua_isstring

Source/Misc/lua/src/lua.c:2116–2119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2114
2115
2116LUA_API int lua_isstring (lua_State *L, int idx) {
2117int t = lua_type(L, idx);
2118return (t == LUA_TSTRING || t == LUA_TNUMBER);
2119}
2120
2121
2122LUA_API int lua_isuserdata (lua_State *L, int idx) {

Callers 10

luaB_errorFunction · 0.85
generic_readerFunction · 0.85
luaB_auxwrapFunction · 0.85
db_errorfbFunction · 0.85
ll_requireFunction · 0.85
add_valueFunction · 0.85
addfieldFunction · 0.85

Calls 1

lua_typeFunction · 0.85

Tested by

no test coverage detected