hsc3-utils: Haskell SuperCollider Utilities

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

Haskell SuperCollider Utilities


[Skip to Readme]

Modules

[Index]

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), directory, filepath, hashable, hosc (>=0.15 && <0.16), hsc3 (>=0.15 && <0.16), hsc3-dot (>=0.15 && <0.16), hsc3-rw (>=0.15 && <0.16), hsc3-sf (>=0.15 && <0.16), process [details]
License LicenseRef-GPL
Copyright (c) Rohan Drape, 2013-2014
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 2014-10-23T02:24:59Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Executables hsc3-scsyndef-to-dot, hsc3-id-clear, hsc3-id-rewrite, hsc3-hash-paren, hsc3-hash-at
Downloads 1672 total (7 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-05-20 [all 1 reports]

Readme for hsc3-utils-0.15

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

[hsc3][hsc3] related utility programs.

### hash-paren

`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-2014, [gpl][gpl].

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