MCPcopy Create free account
hub / github.com/defold/defold / lua_isstring

Function lua_isstring

engine/lua/src/lua/lapi.c:267–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265
266
267LUA_API int lua_isstring (lua_State *L, int idx) {
268 int t = lua_type(L, idx);
269 return (t == LUA_TSTRING || t == LUA_TNUMBER);
270}
271
272
273LUA_API int lua_isuserdata (lua_State *L, int idx) {

Callers 15

Script_GetFunction · 0.85
Script_SetFunction · 0.85
Script_AnimateFunction · 0.85
Script_CancelAnimationsFunction · 0.85
Sys_GetConfigStringFunction · 0.85
URL_newindexFunction · 0.85
URL_newFunction · 0.85
Msg_PostFunction · 0.85
ResolveURLFunction · 0.85
GetLuaTracebackFunction · 0.85
BacktraceErrorHandlerFunction · 0.85

Calls 1

lua_typeFunction · 0.85

Tested by 2

TEST_FFunction · 0.68
PrintTableFunction · 0.68