(C++) operator\*=
February 24, 2017 · View on GitHub
(C++) operator*=
operator*= is the operator to multiply a variable's value by a certain value, without making a copy.
#include <cassert> int main() { int x = 3; x*=4; assert(x == 12); }