New in version 1.1.
Fuse tied leaves in components once by prolated_durations without overhang:
abjad> staff = Staff(notetools.make_repeated_notes(8))
abjad> tietools.TieSpanner(staff.leaves)
TieSpanner(c'8, c'8, c'8, c'8, c'8, c'8, c'8, c'8)
abjad> f(staff)
\new Staff {
c'8 ~
c'8 ~
c'8 ~
c'8 ~
c'8 ~
c'8 ~
c'8 ~
c'8
}
abjad> leaftools.fuse_tied_leaves_in_components_once_by_prolated_durations_without_overhang(staff, [Duration(3, 8), Duration(3, 8)])
abjad> f(staff)
\new Staff {
c'4. ~
c'4. ~
c'8 ~
c'8
}
Return none.
Changed in version 2.0: renamed fuse.tied_leaves_by_prolated_durations() to leaftools.fuse_tied_leaves_in_components_once_by_prolated_durations_without_overhang().