MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_tonumber

Function lua_tonumber

Source/Misc/lua/src/lua.c:2162–2169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2160
2161
2162LUA_API lua_Number lua_tonumber (lua_State *L, int idx) {
2163TValue n;
2164const TValue *o = index2adr(L, idx);
2165if (tonumber(o, &n))
2166return nvalue(o);
2167else
2168return 0;
2169}
2170
2171
2172LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) {

Calls 1

index2adrFunction · 0.85

Tested by

no test coverage detected