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

Method writeTo

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

Source from the content-addressed store, hash-verified

318 }
319
320 public override writeTo(s: IWriteable): void {
321 // status byte
322 s.writeByte((this.channel & 0x0f) | 0x90);
323 s.writeByte(this.noteKey & 0xff);
324 s.writeByte(this.noteVelocity & 0xff);
325 }
326}
327
328/**

Callers

nothing calls this directly

Calls 1

writeByteMethod · 0.65

Tested by

no test coverage detected