| 280 | } |
| 281 | |
| 282 | bool operator<(const BasicDecimal32& left, const BasicDecimal32& right) { |
| 283 | return left.value() < right.value(); |
| 284 | } |
| 285 | |
| 286 | bool operator<=(const BasicDecimal32& left, const BasicDecimal32& right) { |
| 287 | return left.value() <= right.value(); |