Returns a FoscNoteHeadList.
Note-head list.
| client |
| addAll | |
| getByPitch | (abjad: get) |
| pop | |
| remove |
Example
a = FoscNoteHeadList((60..63).collect { |p| FoscNoteHead(p) });
a.addAll((64..67).collect { |p| FoscNoteHead(p) });
a.items.collect { |e| e.writtenPitch.ps }.join(" ");"C4" "C#4" "D4" "Eb4" "E4" "F4" "F#4" "G4"(abjad: get)
Example
a = FoscNoteHeadList((60..63).collect { |p| FoscNoteHead(p) });
a.getByPitch("C#4").writtenPitch.ps;"C#4"