MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / operator /

Method operator /

code/mathematics/intx.cpp:113–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 q.data[i] = k; }
112 return pair<intx, intx>(q.normalize(n.sign * d.sign), r); }
113 intx operator /(const intx& d) const {
114 return divmod(*this,d).first; }
115 intx operator %(const intx& d) const {
116 return divmod(*this,d).second * sign; } };
117// vim: cc=60 ts=2 sts=2 sw=2:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected