| 24 | bool operator <=(const fraction<T>& other) const { |
| 25 | return !(other < *this); } |
| 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 { |
nothing calls this directly
no outgoing calls
no test coverage detected