MCPcopy Create free account
hub / github.com/Singular/Singular / operator--

Method operator--

IntegerProgramming/BigInt.cc:154–159  ·  view source on GitHub ↗

postfix --

Source from the content-addressed store, hash-verified

152
153// postfix --
154BigInt BigInt::operator--(int)
155{
156 BigInt erg;
157 mpz_add(erg.value,value,BigInt(1).value);
158 return erg;
159}
160
161BigInt operator-(const BigInt& r)
162{

Callers

nothing calls this directly

Calls 1

BigIntClass · 0.85

Tested by

no test coverage detected