* Returns true if %%other%% is less than or equal to %%this%%.
(other)
| 369 | * Returns true if %%other%% is less than or equal to %%this%%. |
| 370 | */ |
| 371 | lte(other) { return this.cmp(other) <= 0; } |
| 372 | /** |
| 373 | * Returns true if %%other%% is greater than to %%this%%. |
| 374 | */ |