** Main operation less than; return 'l < r'. */
| 533 | ** Main operation less than; return 'l < r'. |
| 534 | */ |
| 535 | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { |
| 536 | if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ |
| 537 | return LTnum(l, r); |
| 538 | else return lessthanothers(L, l, r); |
| 539 | } |
| 540 | |
| 541 | |
| 542 | /* |
no test coverage detected