New in version 2.0.
Iterate notes and chords backward in expr:
abjad> staff = Staff("<e' g' c''>8 a'8 r8 <d' f' b'>8 r2")
abjad> f(staff)
\new Staff {
<e' g' c''>8
a'8
r8
<d' f' b'>8
r2
}
abjad> for leaf in leaftools.iterate_notes_and_chords_backward_in_expr(staff):
... leaf
Chord("<d' f' b'>8")
Note("a'8")
Chord("<e' g' c''>8")
Ignore threads.
Return generator.
Changed in version 2.0: renamed pitchtools.iterate_notes_and_chords_backward_in_expr() to leaftools.iterate_notes_and_chords_backward_in_expr().