measuretools.fill_measures_in_expr_with_meter_denominator_notes

abjad.tools.measuretools.fill_measures_in_expr_with_meter_denominator_notes.fill_measures_in_expr_with_meter_denominator_notes(expr, iterctrl=None)[source]

New in version 1.1.

Fill measures in expr with meter denominator notes:

abjad> staff = Staff([Measure((3, 4), []), Measure((3, 16), []), Measure((3, 8), [])])
abjad> measuretools.fill_measures_in_expr_with_meter_denominator_notes(staff)
abjad> f(staff)
\new Staff {
    {
        \time 3/4
        c'4
        c'4
        c'4
    }
    {
        \time 3/16
        c'16
        c'16
        c'16
    }
    {
        \time 3/8
        c'8
        c'8
        c'8
    }
}

Delete existing contents of measures in expr.

Return none.

This Page