base_uint [constructor] | Constructors |
operator= | Assignment operators |
CompareTo | Numeric ordering, treating the value as an unsigned integer rather than a byte blob. |
EqualTo | Tests whether the value equals a 64-bit unsigned number. |
GetHex | Hex encoding of the number (with the most significant digits first). |
GetLow64 | Returns the low 64 bits of the value. |
ToString | Returns the value as a human-readable string. |
bits | Returns the position of the highest bit set plus one, or zero if the value is zero. |
getdouble | Converts the value to a double-precision floating-point number. |
operator&= | Applies a bitwise AND with another big integer in place. |
operator*= | Multiplication assignment operators |
operator++ | Increment operators |
operator+= | Addition assignment operators |
operator- | Returns the two's-complement negation of the value. |
operator-- | Decrement operators |
operator-= | Subtraction assignment operators |
operator/= | Divides this value by another big integer in place. |
operator<<= | Shifts the value left by the given number of bits in place. |
operator>>= | Shifts the value right by the given number of bits in place. |
operator^= | Bitwise exclusive-or assignment operators |
operator|= | Bitwise disjunction assignment operators |
operator~ | Returns the bitwise complement of the value. |
size | Returns the size in bytes of the internal representation. |