Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EmmyLua/EmmyLuaDebugger
/ lua_isinteger
Function
lua_isinteger
third-party/lua-5.5.0/src/lapi.c:301–304 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
299
300
301
LUA_API int lua_isinteger (lua_State *L, int idx) {
302
const TValue *o = index2value(L, idx);
303
return ttisinteger(o);
304
}
305
306
307
LUA_API int lua_isnumber (lua_State *L, int idx) {
Callers
8
math_abs
Function · 0.70
math_floor
Function · 0.70
math_ceil
Function · 0.70
math_fmod
Function · 0.70
math_modf
Function · 0.70
math_type
Function · 0.70
addliteral
Function · 0.70
luaL_unref
Function · 0.70
Calls
1
index2value
Function · 0.70
Tested by
no test coverage detected