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

Method writeInt32LE

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

Source from the content-addressed store, hash-verified

187 }
188
189 public static writeInt32LE(o: IWriteable, v: number) {
190 o.writeByte((v >> 0) & 0xff);
191 o.writeByte((v >> 8) & 0xff);
192 o.writeByte((v >> 16) & 0xff);
193 o.writeByte((v >> 24) & 0xff);
194 }
195
196 public static writeUInt16LE(o: IWriteable, v: number) {
197 o.writeByte((v >> 0) & 0xff);

Callers 4

writeEntryMethod · 0.80
writeEventDataMethod · 0.80

Calls 1

writeByteMethod · 0.65

Tested by

no test coverage detected