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

Method getUint8

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

Source from the content-addressed store, hash-verified

110 // Read methods | 读取方法
111
112 public getUint8(): number {
113 const value = this._data.getUint8(this._position);
114 this._position += 1;
115 return value;
116 }
117
118 public getInt8(): number {
119 const value = this._data.getInt8(this._position);

Callers 15

seekMethod · 0.95
readBoolMethod · 0.95
readByteMethod · 0.95
readColorMethod · 0.95
readColorSMethod · 0.95
loadPackageMethod · 0.80
parseNodeMethod · 0.80
parsePropertyMethod · 0.80
readNodeFunction · 0.80
readNodeFunction · 0.80
readNodeFunction · 0.80
readNodeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected