| 7 | x = (_x % 1000000007 + 1000000007) % 1000000007; |
| 8 | } |
| 9 | Mod operator +(const Mod &other) const { |
| 10 | return x + other.x; |
| 11 | } |
| 12 | Mod operator -(const Mod &other) const { |
| 13 | return x - other.x; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected