| 609 | return compare(data, other.data) != 0; |
| 610 | } |
| 611 | bool Tuple::operator<(Tuple const& other) const { |
| 612 | return compare(data, other.data) < 0; |
| 613 | } |
| 614 | bool Tuple::operator<=(Tuple const& other) const { |
| 615 | return compare(data, other.data) <= 0; |
| 616 | } |