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

Safe HaskellNone
LanguageHaskell2010

Synthesizer.Generic.CutChunky

Documentation

class (Transform chunky, Transform (Chunk chunky)) => C chunky where Source #

Minimal complete definition

fromChunks, toChunks

Associated Types

type Chunk chunky :: * Source #

Methods

fromChunks :: [Chunk chunky] -> chunky Source #

toChunks :: chunky -> [Chunk chunky] Source #

Instances
(C a, C a, Transform a) => C (T a) Source # 
Instance details

Defined in Synthesizer.Generic.CutChunky

Associated Types

type Chunk (T a) :: * Source #

Methods

fromChunks :: [Chunk (T a)] -> T a Source #

toChunks :: T a -> [Chunk (T a)] Source #

Storable a => C (Vector a) Source # 
Instance details

Defined in Synthesizer.Generic.CutChunky

Associated Types

type Chunk (Vector a) :: * Source #

Methods

fromChunks :: [Chunk (Vector a)] -> Vector a Source #

toChunks :: Vector a -> [Chunk (Vector a)] Source #