MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / writeUInt16LE

Method writeUInt16LE

packages/alphatab/src/io/IOHelper.ts:196–199  ·  view source on GitHub ↗
(o: IWriteable, v: number)

Source from the content-addressed store, hash-verified

194 }
195
196 public static writeUInt16LE(o: IWriteable, v: number) {
197 o.writeByte((v >> 0) & 0xff);
198 o.writeByte((v >> 8) & 0xff);
199 }
200
201 public static writeInt16LE(o: IWriteable, v: number) {
202 o.writeByte((v >> 0) & 0xff);

Callers 2

writeEntryMethod · 0.80

Calls 1

writeByteMethod · 0.65

Tested by

no test coverage detected