New in version 1.1.
Arpeggiate chord:
abjad> chord = Chord("<c' d'' ef''>8")
abjad> chordtools.arpeggiate_chord(chord)
[Note("c'8"), Note("d''8"), Note("ef''8")]
Arpeggiated notes inherit chord written duration.
Arpeggiated notes do not inherit other chord attributes.
Return list of newly constructed notes.
Changed in version 2.0: renamed chordtools.arpeggiate() to chordtools.arpeggiate_chord().