synthesizer-core-0.8.2.1: Audio signal processing coded in Haskell: Low level part

Safe HaskellNone
LanguageHaskell2010

Synthesizer.Causal.Arrow

Documentation

class Arrow arrow => C arrow where Source #

Minimal complete definition

apply

Methods

apply :: (Transform sig a, Transform sig b) => arrow a b -> sig a -> sig b Source #

Instances
C T Source # 
Instance details

Defined in Synthesizer.Causal.Arrow

Methods

apply :: (Transform sig a, Transform sig b) => T a b -> sig a -> sig b Source #

C ((->) :: * -> * -> *) Source # 
Instance details

Defined in Synthesizer.Causal.Arrow

Methods

apply :: (Transform sig a, Transform sig b) => (a -> b) -> sig a -> sig b Source #