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

Function luaV_lessequal

third-party/lua-5.5.0/src/lvm.c:571–575  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

569** Main operation less than or equal to; return 'l <= r'.
570*/
571int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) {
572 if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */
573 return LEnum(l, r);
574 else return lessequalothers(L, l, r);
575}
576
577
578/*

Callers 1

lua_compareFunction · 0.70

Calls 2

LEnumFunction · 0.70
lessequalothersFunction · 0.70

Tested by

no test coverage detected