reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
567 bool operator==(const ScaledNumber &X) const { return compare(X) == 0; } 568 bool operator<(const ScaledNumber &X) const { return compare(X) < 0; } 569 bool operator!=(const ScaledNumber &X) const { return compare(X) != 0; } 570 bool operator>(const ScaledNumber &X) const { return compare(X) > 0; } 571 bool operator<=(const ScaledNumber &X) const { return compare(X) <= 0; } 572 bool operator>=(const ScaledNumber &X) const { return compare(X) >= 0; }