pub trait ToEnharmonicNotesWithStart {
    // Required method
    fn to_enharmonic_notes_with_start(
        self,
        start: Option<EnharmonicNote>
    ) -> Vec<EnharmonicNote>;
}
Expand description

Convert to a vector of EnharmonicNote.

Required Methods§

source

fn to_enharmonic_notes_with_start( self, start: Option<EnharmonicNote> ) -> Vec<EnharmonicNote>

Take self and return a vector of EnharmonicNote. You can optionally specify a starting note. This will affect the spelling. Subsequent notes will be spelled with subsequent letters.

Implementors§