MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaV_lessequal

Function luaV_lessequal

third-party/lua-5.4.6/src/lvm.c:561–565  ·  view source on GitHub ↗

** Main operation less than or equal to; return 'l <= r'. */

Source from the content-addressed store, hash-verified

559** Main operation less than or equal to; return 'l <= r'.
560*/
561int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) {
562 if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */
563 return LEnum(l, r);
564 else return lessequalothers(L, l, r);
565}
566
567
568/*

Callers 1

lua_compareFunction · 0.70

Calls 2

LEnumFunction · 0.70
lessequalothersFunction · 0.70

Tested by

no test coverage detected