music-score-1.7.1: Musical score and part representation.

Portabilitynon-portable (TF,GNTD)
Stabilityexperimental
Maintainerhans@hanshoglund.se
Safe HaskellNone

Music.Score.Meta.Fermata

Contents

Description

Provides fermatas.

Synopsis

Fermata type

data Fermata Source

Represents a fermata.

TODO where is the fermata added if the score contains multiple notes. Always the last?

Instances

Adding fermatas to scores

fermata :: (HasMeta a, HasPosition a) => Fermata -> a -> aSource

Add a fermata over the whole score.

fermataDuring :: HasMeta a => Span -> Fermata -> a -> aSource

Add a fermata to the given score.

Extracting fermatas

withFermata :: (Fermata -> Score a -> Score a) -> Score a -> Score aSource

Extract fermatas in from the given score, using the given default fermata.