DH
Size: a a a
МВ
DH
МВ
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);
}
МВ
МВ
И
МВ
МВ
МВ
И
DH