absl::uint128::operator++

Increment operators

Synopses

Declared in <absl/numeric/int128.h>

Increments this value by one and returns the new value.

uint128&
operator++();
» more...

Increments this value by one and returns the previous value.

uint128
operator++(int unused);
» more...

Return Value

  • A reference to this uint128.
  • A copy of this value before the increment.

Parameters

NameDescription
unusedUnused parameter.