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

Method writeTo

packages/alphatab/src/midi/MidiEvent.ts:337–342  ·  view source on GitHub ↗
(s: IWriteable)

Source from the content-addressed store, hash-verified

335 }
336
337 public override writeTo(s: IWriteable): void {
338 // status byte
339 s.writeByte((this.channel & 0x0f) | 0x80);
340 s.writeByte(this.noteKey & 0xff);
341 s.writeByte(this.noteVelocity & 0xff);
342 }
343}
344
345/**

Callers

nothing calls this directly

Calls 1

writeByteMethod · 0.65

Tested by

no test coverage detected