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

Safe HaskellNone
LanguageHaskell2010

Synthesizer.ChunkySize.Cut

Description

Functions for cutting signals with respect to lazy chunky time measures. This is essential for realtime applications.

Documentation

class Read sig => Read sig where

Methods

length :: sig -> T

Instances

Read [y] 
Storable y => Read (Vector y) 
Read (T y) 

class (Read sig, Monoid sig) => Transform sig where

Methods

take :: T -> sig -> sig

drop :: T -> sig -> sig

splitAt :: T -> sig -> (sig, sig)

Instances