pub fn merge_notes_array<T: MIDINum, N: MIDINote<T>, Err, I: Iterator<Item = Result<N, Err>> + Sized>( array: Vec<I>, ) -> impl Iterator<Item = Result<N, Err>>
Merge an array of note iterators together into one iterator.