@hackage hsc3-utils0.15
Haskell SuperCollider Utilities
Categories
License
LicenseRef-GPL
Maintainer
rd@slavepianos.org
Links
Versions
Deprecated
Dependencies (7)
Dependents (2)
@hackage/acme-everything, @hackage/hsc3-graphs
hsc3-utils - haskell supercollider3 utilities
hsc3 related utility programs.
hash-paren
hash-paren is a simple minded haskell pre-processor that
extends the haskell do syntax by rewriting # parenthesised
elements of a right hand side expression as monadic bindings. Ie.
do ...
c <- f #(a) #(b)
...
is rewritten as:
do ...
_hp_0 <- a
_hp_1 <- b
c <- f _hp_0 _hp_1
...
© rohan drape, 2013-2014, gpl.