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

Convert to a vector of EnharmonicNote.

Required Methods§

source

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

Borrow 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§