| 124 | } |
| 125 | |
| 126 | Int128 operator - (const Int128& rhs) const |
| 127 | { |
| 128 | Int128 result(*this); |
| 129 | result -= rhs; |
| 130 | return result; |
| 131 | } |
| 132 | |
| 133 | Int128 operator-() const //unary negation |
| 134 | { |
nothing calls this directly
no outgoing calls
no test coverage detected