Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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 --
154
BigInt BigInt::operator--(int)
155
{
156
BigInt erg;
157
mpz_add(erg.value,value,BigInt(1).value);
158
return erg;
159
}
160
161
BigInt operator-(const BigInt& r)
162
{
Callers
nothing calls this directly
Calls
1
BigInt
Class · 0.85
Tested by
no test coverage detected