New in version 2.0.
Iterate chords forward 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 chord in chordtools.iterate_chords_forward_in_expr(staff):
... chord
Chord("<e' g' c''>8")
Chord("<d' f' b'>8")
Ignore threads.
Return generator.