sample-frame-0.0.3: Handling of samples in an (audio) signal

Safe HaskellNone

Sound.Frame.Stereo

Documentation

data T a Source

Instances

Functor T 
Applicative T 
Foldable T 
Traversable T 
Eq a => Eq (T a) 
Show a => Show (T a) 
Arbitrary a => Arbitrary (T a) 
Storable a => Storable (T a) 
C a => C (T a) 

left :: T a -> aSource

right :: T a -> aSource

cons :: a -> a -> T aSource

map :: (a -> b) -> T a -> T bSource

data Channel Source

Constructors

Left 
Right 

select :: T a -> Channel -> aSource

interleave :: (T a, T b) -> T (a, b)Source

sequence :: Functor f => f (T a) -> T (f a)Source

liftApplicative :: Applicative f => (f a -> f b) -> f (T a) -> f (T b)Source