MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / lua_pushnumber

Function lua_pushnumber

lua/lapi.c:436–441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

434
435
436LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
437 lua_lock(L);
438 setnvalue(L->top, n);
439 api_incr_top(L);
440 lua_unlock(L);
441}
442
443
444LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {

Callers 15

luaB_tonumberFunction · 0.85
luaB_collectgarbageFunction · 0.85
math_absFunction · 0.85
math_sinFunction · 0.85
math_sinhFunction · 0.85
math_cosFunction · 0.85
math_coshFunction · 0.85
math_tanFunction · 0.85
math_tanhFunction · 0.85
math_asinFunction · 0.85
math_acosFunction · 0.85
math_atanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected