Gets the low bytes of this Int64 object.
The low bytes.
Gets the high bytes of this Int64 object.
The high bytes.
StaticfromCreate a new Int64 from two numbers.
A Int32 holding the high bytes.
A Int32 holding the low bytes.
The resulting Int64 object.
StatictoStaticfromCreates a new Int64 from a SimpleInt64 object.
The SimpleInt64 object.
The resulting Int64 object.
StaticfromConverts an array of SimpleInt64 objects to an array of Int64 objects.
The array of SimpleInt64 objects.
The resulting array of Int64 objects.
StatictoConverts an array of Int64 objects to an array of SimpleInt64 objects.
The array of Int64 objects.
The resulting array of SimpleInt64 objects.
StaticfromCreates a new Int64 from a javascript number.
A javascript number that then is broken in high and low bytes.
The resulting Int64 object.
StaticfromCreates a new Int64 from a bigint.
The bigint.
The resulting Int64 object.
Converts this Int64 object to a SimpleInt64 object.
The resulting SimpleInt64 object.
Checks if this Int64 object is equal to another Int64 object or number.
The other Int64 object or number.
True if equal, false otherwise.
The comparison is done by converting both this object and the other into plain javascript numbers and then comparing these values
Converts this Int64 object to a debug string.
The debug string.
Converts this Int64 object to a plain javascript number. Not all values can be converted.
The resulting number.
Converts this Int64 object to a bigint.
The resulting bigint.
Converts this Int64 object to a SimpleInt64 object.
The resulting SimpleInt64 object.
Class to hold a 64-bit integer. Javascript does not support such numbers so internally we use two number fields to hold the high and low bits.