| 26 | bool operator >(const fraction<T>& other) const { |
| 27 | return other < *this; } |
| 28 | bool operator >=(const fraction<T>& other) const { |
| 29 | return !(*this < other); } |
| 30 | bool operator ==(const fraction<T>& other) const { |
| 31 | return n == other.n && d == other.d; } |
| 32 | bool operator !=(const fraction<T>& other) const { |
nothing calls this directly
no outgoing calls
no test coverage detected