Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
267
LUA_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
273
LUA_API int lua_isuserdata (lua_State *L, int idx) {
Callers
15
Script_Get
Function · 0.85
Script_Set
Function · 0.85
Script_Animate
Function · 0.85
Script_CancelAnimations
Function · 0.85
PropertyContainerCreateFromLua
Function · 0.85
Sys_GetConfigString
Function · 0.85
URL_newindex
Function · 0.85
URL_new
Function · 0.85
Msg_Post
Function · 0.85
ResolveURL
Function · 0.85
GetLuaTraceback
Function · 0.85
BacktraceErrorHandler
Function · 0.85
Calls
1
lua_type
Function · 0.85
Tested by
2
TEST_F
Function · 0.68
PrintTable
Function · 0.68