Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Overload-Technologies/Overload
/ lua_isstring
Function
lua_isstring
Dependencies/lua/src/lapi.c:316–319 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
314
315
316
LUA_API int lua_isstring (lua_State *L, int idx) {
317
const TValue *o = index2value(L, idx);
318
return (ttisstring(o) || cvt2str(o));
319
}
320
321
322
LUA_API int lua_isuserdata (lua_State *L, int idx) {
Callers
7
luaL_tolstring
Function · 0.85
generic_reader
Function · 0.85
add_value
Function · 0.85
runC
Function · 0.85
luaL_tolstring
Function · 0.85
addfield
Function · 0.85
findloader
Function · 0.85
Calls
1
index2value
Function · 0.85
Tested by
1
runC
Function · 0.68