isSysExEvent

A track event is one of the following: - a MIDI event, meaning it carries around any message (channel or system), except system exclusive messages; - a system exclusive event, which offers an escape to transmit arbitrary bytes; - a meta event, meaning it carries around other meta information.

Use isMIDIEvent(), isSysExEvent() and isMetaEvent() to find which kind of event it is from its status byte.

See also: mididi.types.TrackEvent; mididi.types.MIDIEvent, mididi.types.SysExEvent and mididi.types.MetaEvent.

  1. bool isMIDIEvent(ubyte statusByte)
  2. bool isSysExEvent(ubyte statusByte)
    @nogc nothrow pure @safe
    bool
    isSysExEvent
    ()
  3. bool isMetaEvent(ubyte statusByte)

Meta