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

Function luaV_tonumber

Source/Misc/lua/src/lua.c:14868–14877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14866
14867
14868const TValue *luaV_tonumber (const TValue *obj, TValue *n) {
14869lua_Number num;
14870if (ttisnumber(obj)) return obj;
14871if (ttisstring(obj) && luaO_str2d(svalue(obj), &num)) {
14872setnvalue(n, num);
14873return n;
14874}
14875else
14876return NULL;
14877}
14878
14879
14880int luaV_tostring (lua_State *L, StkId obj) {

Callers 2

luaG_aritherrorFunction · 0.85
ArithFunction · 0.85

Calls 1

luaO_str2dFunction · 0.85

Tested by

no test coverage detected