Increases the value by the addend.
addend
void increment(int addend) { assert(addend >= 0); _value += addend; }