Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
282
LUA_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
288
LUA_API int lua_isuserdata (lua_State *L, int idx) {
Callers
6
luaB_error
Function · 0.85
generic_reader
Function · 0.85
add_value
Function · 0.85
luaB_auxwrap
Function · 0.85
addfield
Function · 0.85
findloader
Function · 0.85
Calls
1
index2addr
Function · 0.85
Tested by
no test coverage detected