g
Size: a a a
EP
0
DA
DB
DA
/**
* Move assignment
*/
void opAssign(const BigInt other) nothrow
{
this.swap(cast(BigInt*)&other);
}
/**
* Move assignment
*/
void opAssign(BigInt other) const nothrow
{
(cast(BigInt*)&this).swap(&other);
}
/**
* Move assignment
*/
void opAssign(in BigInt other) nothrow
{
this.swap(cast(BigInt*)&other);
}
/**
* Move assignment
*/
void opAssign(BigInt other) immutable nothrow
{
(cast(BigInt*)&this).swap(&other);
}
DB
DA
DA
DA
DB
DB
DB
И