Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CppCXY/EmmyLuaCodeStyle
/ lua_isstring
Function
lua_isstring
3rd/lua-5.4.3/src/lapi.c:310–313 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
308
309
310
LUA_API int lua_isstring (lua_State *L, int idx) {
311
const TValue *o = index2value(L, idx);
312
return (ttisstring(o) || cvt2str(o));
313
}
314
315
316
LUA_API int lua_isuserdata (lua_State *L, int idx) {
Callers
15
luaToString
Function · 0.85
format
Function · 0.85
range_format
Function · 0.85
type_format
Function · 0.85
update_config
Function · 0.85
diagnose_file
Function · 0.85
spell_load_dictionary_from_path
Function · 0.85
spell_load_dictionary_from_buffer
Function · 0.85
spell_analysis
Function · 0.85
CreateFromLua
Function · 0.85
update_name_style_config
Function · 0.85
name_style_analysis
Function · 0.85
Calls
1
index2value
Function · 0.85
Tested by
no test coverage detected