Bases: abjad.measure.measure._Measure
New in version 1.1.1.
Extend components rightwards of self in parent.
Do not extend edge spanners.
abjad> t = Voice(construct.scale(3))
abjad> Beam(t[:])
abjad> t[-1].extend_in_parent(construct.scale(3))
abjad> print t.format
\new Voice {
c'8 [
d'8
e'8 ]
c'8
d'8
e'8
}
New in version 1.1.1.
Extend components leftwards of self in parent.
Do not extend edge spanners.
abjad> t = Voice(construct.scale(3))
abjad> Beam(t[:])
abjad> t[0].extend_in_parent(construct.scale(3))
abjad> print t.format
\new Voice {
c'8
d'8
e'8
c'8 [
d'8
e'8 ]
}
Read-only tuple of all leaves in self.
Changed in version 1.1.1.