Represents an unsigned 64-bit value.
Creates a new UInt64 from v, which is either a string containing the value in decimal, or hexadecimal if prefixed with “0x”, or a number. You may use the uint64(v) short-hand for brevity.
v
Makes a new UInt64 whose value is this + v.
this
Makes a new UInt64 whose value is this & v.
Returns an integer comparison result just like String#localeCompare().
Returns a boolean indicating whether v is equal to this.
Makes a new UInt64 whose value is ~`this`.
Makes a new UInt64 whose value is this | v.
Makes a new UInt64 whose value is this >> v.
Makes a new UInt64 whose value is this << v.
Makes a new UInt64 whose value is this - v.
Converts to a JSON-serializable value. Same as toString().
toString()
Converts to a number.
Converts to a string, optionally with a custom radix.
radix
Optional
Converts to a number. Same as toNumber().
toNumber()
Makes a new UInt64 whose value is this ^ v.
Generated using TypeDoc
Represents an unsigned 64-bit value.