increase method

void increase()

Implementation

void increase() {
  if (_value == 0xffffffff) {
    _value = 0;
  } else {
    _value++;
  }
}