Returns a FoscFixedDurationContainer.
Fixed duration container
| targetDuration_ | Sets target duration of fixed-duration container. |
| isFull | Is true when preprolated duration equals target duration. Otherwise false. |
| isMisfilled | Is true when preprolated duration does not equal target duration. Otherwise false. |
| isOverfull | Is true when preprolated duration is greater than target duration. Otherwise false. |
| isUnderfull | Is true when preprolated duration is less than target duration. Otherwise false. |
FIXME ERROR: Message music not understood.
m = Array.fill(5, { |i| FoscNote(60+i, FoscDuration(1, 8)) });
x = FoscFixedDurationContainer(FoscDuration(3, 4), m);
x.music;
x.targetDuration.inspect;
x.inspect;x.isFull;
x.isMisfilled;
x.isOverfull;
x.isUnderfull;
x.prCheckDuration;
x.targetDuration_([5, 8]);
x.targetDuration.pair;Sets target duration of fixed-duration container.
Is true when preprolated duration equals target duration. Otherwise false.
Returns true or false.
Is true when preprolated duration does not equal target duration. Otherwise false.
Returns true or false.
Is true when preprolated duration is greater than target duration. Otherwise false.
Returns true or false.
Is true when preprolated duration is less than target duration. Otherwise false.
Returns true or false.