Function events_to_notes

Source
pub fn events_to_notes<D: MIDINum, E: MIDIEventEnum, Err, I: Iterator<Item = Result<Delta<D, E>, Err>> + Sized>(
    iter: I,
) -> impl Iterator<Item = Result<Note<D>, Err>>
Expand description

Takes an event iterator and converts it to a note iterator. Effectively extracting the notes from an event sequence.