csound-expression-typed-0.2.7.1: typed core for the library csound-expression
Safe HaskellSafe-Inferred
LanguageHaskell2010

Csound.Typed.Types.TupleHelpers

Documentation

cons3 :: (a, (b, c)) -> (a, b, c) Source #

cons4 :: (a, (b, c, d)) -> (a, b, c, d) Source #

cons5 :: (a, (b, c, d, e)) -> (a, b, c, d, e) Source #

cons6 :: (a, (b, c, d, e, f)) -> (a, b, c, d, e, f) Source #

cons7 :: (a, (b, c, d, e, f, g)) -> (a, b, c, d, e, f, g) Source #

cons8 :: (a, (b, c, d, e, f, g, h)) -> (a, b, c, d, e, f, g, h) Source #

split3 :: (a, b, c) -> (a, (b, c)) Source #

split4 :: (a, b, c, d) -> (a, (b, c, d)) Source #

split5 :: (a, b, c, d, e) -> (a, (b, c, d, e)) Source #

split6 :: (a, b, c, d, e, f) -> (a, (b, c, d, e, f)) Source #

split7 :: (a, b, c, d, e, f, g) -> (a, (b, c, d, e, f, g)) Source #

split8 :: (a, b, c, d, e, f, g, h) -> (a, (b, c, d, e, f, g, h)) Source #