Assignment operators

Synopses

Declared in <absl/numeric/int128.h>

Assigns a signed __int128 value to this uint128.

uint128&
operator=(__int128 v);

Assigns a signed int value to this uint128.

uint128&
operator=(int v);

Assigns a signed int128 value to this uint128.

Assigns a signed long value to this uint128.

uint128&
operator=(long v);

Assigns a signed long long value to this uint128.

uint128&
operator=(long long v);

Assigns an unsigned __int128 value to this uint128.

uint128&
operator=(unsigned __int128 v);

Assigns an unsigned int value to this uint128.

uint128&
operator=(unsigned int v);

Assigns an unsigned long value to this uint128.

uint128&
operator=(unsigned long v);

Assigns an unsigned long long value to this uint128.

uint128&
operator=(unsigned long long v);

Return Value

A reference to this uint128.

Parameters

Name

Description

v

The value to assign.

Created with MrDocs