In computer programming, an assignment is a statement that sets a value to a variable name. The equal symbol (=) designates the operator that is used to do assignment. The right operand’s value is ...
On rule of three / five page on cppreference, this assignment operator with a value parameter can replace assignment with both reference and rvalue reference parameter. This makes it rule of four. Can ...