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

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

Music.Time.Pos

Description

 

Synopsis

Documentation

type family Time s :: *Source

This type function returns the time type for a given type.

It has kind

 (* -> *) -> *

meaning that an instance should be written on the form:

 type instance Time a = b

where a and b are type-level expression of kind * -> * and * respectively.

type Duration a = Diff (Time a)Source

This type function returns the duration type for a given type.