Skip to content

Commit

Permalink
Merge branch 'master' of github.com:overtone/overtone
Browse files Browse the repository at this point in the history
  • Loading branch information
rosejn committed Dec 18, 2010
2 parents d96958b + 23a502d commit a6aeeb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/overtone/sc/ugen.clj
Expand Up @@ -307,9 +307,6 @@
(defn- inf? [obj]
(:infinite-sequence (meta obj)))

(defn- mapply [f coll-coll]
(map #(apply f %) coll-coll))

(defn parallel-seqs
"takes n seqs and returns a seq of vectors of length n, lazily
(take 4 (parallel-seqs (repeat 5)
Expand Down
1 change: 0 additions & 1 deletion src/overtone/sc/ugen/io.clj
Expand Up @@ -27,7 +27,6 @@
:args [{:name "bufnum"}
{:name "channelsArray" :mode :append-sequence}],
:rates #{:ar},
:num-outs 0
:check (all-but-first-input-ar "channelsArray must all be audio rate")
:doc "stream audio out to disk file"}

Expand Down
3 changes: 3 additions & 0 deletions src/overtone/util.clj
Expand Up @@ -171,3 +171,6 @@
(invert-map {:a 1, :b 2, :c 3}) ;=> {1 :a, 2 :b, 3 :c}"
[m]
(apply hash-map (interleave (vals m) (keys m))))

(defn mapply [f coll-coll]
(map #(apply f %) coll-coll))

0 comments on commit a6aeeb3

Please sign in to comment.