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

Method intx

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

Source from the content-addressed store, hash-verified

1struct intx {
2 intx() { normalize(1); }
3 intx(string n) { init(n); }
4 intx(int n) { stringstream ss; ss << n; init(ss.str()); }
5 intx(const intx& other)

Callers

nothing calls this directly

Calls 1

normalizeFunction · 0.85

Tested by

no test coverage detected