** Main operation less than; return 'l < r'. */
| 544 | ** Main operation less than; return 'l < r'. |
| 545 | */ |
| 546 | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { |
| 547 | if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ |
| 548 | return LTnum(l, r); |
| 549 | else return lessthanothers(L, l, r); |
| 550 | } |
| 551 | |
| 552 | |
| 553 | /* |
no test coverage detected