MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / fromBits

Method fromBits

projects/JavaScript/proto/int64.js:59–61  ·  view source on GitHub ↗

* Returns Int64 representing the 64 bit integer that comes by concatenating the given low and high 32 bits parts * @param {number} lowBits The low 32-bit part * @param {number} highBits The high 32-bit part * @returns {!Int64} The corresponding Int64 value

(lowBits, highBits)

Source from the content-addressed store, hash-verified

57 * @returns {!Int64} The corresponding Int64 value
58 */
59 static fromBits (lowBits, highBits) {
60 return new Int64(lowBits, highBits)
61 }
62
63 /**
64 * Returns Int64 from its bytes representation

Callers 15

fromInt32Method · 0.45
fromNumberMethod · 0.45
fromValueMethod · 0.45
toUnsignedMethod · 0.45
addMethod · 0.45
mulMethod · 0.45
notMethod · 0.45
andMethod · 0.45
orMethod · 0.45
xorMethod · 0.45
shlMethod · 0.45
shrMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected