csound-expression-opcodes-0.0.3: opcodes for the library csound-expression

Safe HaskellNone
LanguageHaskell98

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://www.csounds.com/manual/html/ftgenonce.html

inleta :: Str -> Sig Source

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

asignal  inleta Sname

csound doc: http://www.csounds.com/manual/html/inleta.html

inletf :: Str -> Spec Source

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

fsignal  inletf Sname

csound doc: http://www.csounds.com/manual/html/inletf.html

inletk :: Str -> Sig Source

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

ksignal  inletk Sname

csound doc: http://www.csounds.com/manual/html/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://www.csounds.com/manual/html/inletkid.html

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

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

 outleta Sname, asignal

csound doc: http://www.csounds.com/manual/html/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://www.csounds.com/manual/html/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://www.csounds.com/manual/html/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://www.csounds.com/manual/html/outletkid.html