| 22 | return x * mod_inv(other.x, 1000000007); |
| 23 | } |
| 24 | bool operator ==(const Mod &other) const { |
| 25 | return x == other.x; |
| 26 | } |
| 27 | }; |
| 28 | ostream& operator <<(ostream &outs, const Mod &x) { |
| 29 | return outs << x.x; |
nothing calls this directly
no outgoing calls
no test coverage detected