csound-expression-opcodes-0.0.5.1: opcodes for the library csound-expression
Safe HaskellNone
LanguageHaskell2010

Csound.Typed.Opcode.SignalFlowGraphOpcodes

Synopsis

Documentation

ftgenonce :: D -> D -> D -> D -> D -> [D] -> SE Tab Source #

Generate a function table from within an instrument definition, without duplication of data.

Enables the creation of function tables entirely inside instrument definitions, without any duplication of data.

ifno  ftgenonce  ip1, ip2dummy, isize, igen, iarga, iargb, ...

csound doc: http://csound.com/docs/manual/ftgenonce.html

inleta :: Str -> Sig Source #

Receives an arate signal into an instrument through a named port.

asignal  inleta Sname

csound doc: http://csound.com/docs/manual/inleta.html

inletf :: Str -> Spec Source #

Receives an frate signal (fsig) into an instrument from a named port.

fsignal  inletf Sname

csound doc: http://csound.com/docs/manual/inletf.html

inletk :: Str -> Sig Source #

Receives a krate signal into an instrument from a named port.

ksignal  inletk Sname

csound doc: http://csound.com/docs/manual/inletk.html

inletkid :: Str -> Str -> Sig Source #

Receives a krate signal into an instrument from a named port.

ksignal  inletkid Sname, SinstanceID

csound doc: http://csound.com/docs/manual/inletkid.html

inletv :: Str -> Sig Source #

Receives an arate array signal into an instrument through a named port.

array  inletv Sname

csound doc: http://csound.com/docs/manual/inletv.html

outleta :: Str -> Sig -> SE () Source #

Sends an arate signal out from an instrument to a named port.

 outleta Sname, asignal

csound doc: http://csound.com/docs/manual/outleta.html

outletf :: Str -> Spec -> SE () Source #

Sends a frate signal (fsig) out from an instrument to a named port.

 outletf Sname, fsignal

csound doc: http://csound.com/docs/manual/outletf.html

outletk :: Str -> Sig -> SE () Source #

Sends a krate signal out from an instrument to a named port.

 outletk Sname, ksignal

csound doc: http://csound.com/docs/manual/outletk.html

outletkid :: Str -> Str -> Sig -> SE () Source #

Sends a krate signal out from an instrument to a named port.

 outletkid Sname, SinstanceID, ksignal

csound doc: http://csound.com/docs/manual/outletkid.html

outletv :: Str -> Sig -> SE () Source #

Sends an arate array signal out from an instrument to a named port.

 outletv Sname, array

csound doc: http://csound.com/docs/manual/outletv.html