MCPcopy Create free account
hub / github.com/esengine/esengine / getUint16

Method getUint16

packages/fairygui/src/utils/ByteBuffer.ts:124–128  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

122 }
123
124 public getUint16(): number {
125 const value = this._data.getUint16(this._position, this._littleEndian);
126 this._position += 2;
127 return value;
128 }
129
130 public getInt16(): number {
131 const value = this._data.getInt16(this._position, this._littleEndian);

Callers 8

seekMethod · 0.95
readUshortMethod · 0.95
readSMethod · 0.95
readStringMethod · 0.95
readUTFStringMethod · 0.95
readUint16Method · 0.95
loadPackageMethod · 0.80
loadFontMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected