Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ObEngine/ObEngine
/ lua_isstring
Function
lua_isstring
extlibs/lua/src/lapi.c:289–292 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
287
288
289
LUA_API int lua_isstring (lua_State *L, int idx) {
290
const TValue *o = index2value(L, idx);
291
return (ttisstring(o) || cvt2str(o));
292
}
293
294
295
LUA_API int lua_isuserdata (lua_State *L, int idx) {
Callers
6
generic_reader
Function · 0.85
add_value
Function · 0.85
luaL_tolstring
Function · 0.85
addfield
Function · 0.85
findloader
Function · 0.85
luaL_tolstring
Function · 0.85
Calls
1
index2value
Function · 0.85
Tested by
no test coverage detected