absl::operator~

Bitwise negation operators

Synopses

Declared in <absl/numeric/int128.h>

Computes the bitwise complement of a StatusToStringMode value.

constexpr
StatusToStringMode
operator~(StatusToStringMode arg);
» more...

Computes the bitwise complement of a chars_format value.

constexpr
chars_format
operator~(chars_format arg);
» more...

Returns the bitwise complement of val.

constexpr
uint128
operator~(uint128 val);
» more...

Computes the complement of a character set.

constexpr
CharSet
operator~(CharSet const& a);
» more...

Return Value

  • The bitwise complement of arg.
  • The bitwise NOT of val.
  • A set containing every character not present in a.

Parameters

NameDescription
argThe operand to complement.
valThe operand.
aThe operand to complement.