Assignment operators
Synopses
Declared in <absl/numeric/int128.h>
Assigns a signed __int128 value to this int128.
int128&
operator=(__int128 v);
Assigns a signed int value to this int128.
int128&
operator=(int v);
Assigns a signed long value to this int128.
int128&
operator=(long v);
Assigns a signed long long value to this int128.
int128&
operator=(long long v);
Assigns an unsigned int value to this int128.
int128&
operator=(unsigned int v);
Assigns an unsigned long value to this int128.
int128&
operator=(unsigned long v);
Assigns an unsigned long long value to this int128.
int128&
operator=(unsigned long long v);
Return Value
A reference to this int128.
Parameters
Name |
Description |
v |
The value to assign. |
Created with MrDocs