MCPcopy Create free account
hub / github.com/apache/cassandra-nodejs-driver / readShort

Method readShort

lib/readers.js:132–136  ·  view source on GitHub ↗

@returns {Number}

()

Source from the content-addressed store, hash-verified

130
131 /** @returns {Number} */
132 readShort() {
133 const result = this.buf.readUInt16BE(this.offset);
134 this.offset += 2;
135 return result;
136 }
137
138 readByte() {
139 const result = this.buf.readUInt8(this.offset);

Callers 8

readStringMethod · 0.95
readStringListMethod · 0.95
readShortBytesMethod · 0.95
readStringMultiMapMethod · 0.95
readTypeMethod · 0.95
readFlagsInfoMethod · 0.95
readMetadataMethod · 0.95
readErrorMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected