at在clojure中到底做了什么?我在互联网上看到了这个例子,它为overtone做了一个循环,但是我不能理解at的意思
(defn looper [nome sound]
(let [beat (nome)]
(at (nome beat) (sound))
(apply-at (nome (inc beat)) looper nome sound [])))`发布于 2015-06-23 06:18:37
at命令是overtone的一部分,而不是Clojure。
overtone小抄显示它是一个计时函数:
https://github.com/overtone/overtone/raw/master/docs/cheatsheet/overtone-cheat-sheet.pdf
你也可以同时查看github和wiki:
https://github.com/overtone/overtone https://github.com/overtone/overtone/wiki http://overtone.github.io/
https://stackoverflow.com/questions/30990087
复制相似问题