Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CppCXY/EmmyLuaCodeStyle
/ luaV_modf
Function
luaV_modf
3rd/lua-5.4.3/src/lvm.c:756–760 ·
view source on GitHub ↗
** Float modulus */
Source
from the content-addressed store, hash-verified
754
** Float modulus
755
*/
756
lua_Number luaV_modf (lua_State *L, lua_Number m, lua_Number n) {
757
lua_Number r;
758
luai_nummod(L, m, n, r);
759
return r;
760
}
761
762
763
/* number of bits in an integer */
Callers
1
numarith
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected