hsc3-utils: Haskell SuperCollider Utilities

[ deprecated, library, program, sound ] [ Propose Tags ]
Deprecated

Haskell SuperCollider Utilities


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.14, 0.15
Dependencies base (>=4 && <5), hsc3-rw (>=0.14 && <0.15) [details]
License LicenseRef-GPL
Copyright (c) Rohan Drape, 2013
Author Rohan Drape
Maintainer rd@slavepianos.org
Category Sound
Home page http://rd.slavepianos.org/?t=hsc3-utils
Source repo head: darcs get http://rd.slavepianos.org/sw/hsc3-utils/
Uploaded by RohanDrape at 2013-04-27T10:14:01Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Executables hsc3-id-clear, hsc3-id-rewrite, hsc3-hash-paren
Downloads 1671 total (8 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2015-11-21 [all 7 reports]

Readme for hsc3-utils-0.14

[back to package description]
hsc3-utils - haskell supercollider3 utilities
---------------------------------------------

[hsc3][hsc3] related utility programs.

`hash-paren` is a simple minded [haskell][hs] 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
       ...

[hsc3]: http://rd.slavepianos.org/?t=hsc3
[hs]: http://haskell.org/

© [rohan drape][rd], 2013, [gpl][gpl].

[rd]: http://rd.slavepianos.org/
[gpl]: http://gnu.org/copyleft/