absl::uint128::operator=

Assignment operators

Synopses

Declared in <absl/numeric/int128.h>

Assigns a signed __int128 value to this uint128.

uint128&
operator=(__int128 v);
» more...

Assigns a signed int value to this uint128.

uint128&
operator=(int v);
» more...

Assigns a signed int128 value to this uint128.

uint128&
operator=(int128 v);
» more...

Assigns a signed long value to this uint128.

uint128&
operator=(long v);
» more...

Assigns a signed long long value to this uint128.

uint128&
operator=(long long v);
» more...

Assigns an unsigned __int128 value to this uint128.

uint128&
operator=(unsigned __int128 v);
» more...

Assigns an unsigned int value to this uint128.

uint128&
operator=(unsigned int v);
» more...

Assigns an unsigned long value to this uint128.

uint128&
operator=(unsigned long v);
» more...

Assigns an unsigned long long value to this uint128.

uint128&
operator=(unsigned long long v);
» more...

Return Value

A reference to this uint128.

Parameters

NameDescription
vThe value to assign.