Assignment operator. Has the same constraints as the constructor.
The value to assign
A reference to this
Checked!long a; a = 42L; assert(a == 42); a = 4242; assert(a == 4242);
Checked!long a, b; a = b = 3; assert(a == 3 && b == 3);
See Implementation
Assignment operator. Has the same constraints as the constructor.