* Is the specified object UInt64? * @param obj Object to check * @returns {boolean}
(obj)
| 961 | * @returns {boolean} |
| 962 | */ |
| 963 | static isUInt64 (obj) { |
| 964 | return (obj && obj.__isUInt64__) === true |
| 965 | } |
| 966 | |
| 967 | /** |
| 968 | * Returns UInt64 representing the 64 bit integer that comes by concatenating the given low and high 32 bits parts |