MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / luaV_modf

Function luaV_modf

Dependencies/lua/src/lvm.c:763–767  ·  view source on GitHub ↗

** Float modulus */

Source from the content-addressed store, hash-verified

761** Float modulus
762*/
763lua_Number luaV_modf (lua_State *L, lua_Number m, lua_Number n) {
764 lua_Number r;
765 luai_nummod(L, m, n, r);
766 return r;
767}
768
769
770/* number of bits in an integer */

Callers 1

numarithFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected