Я работаю от радости от clojure и задаюсь вопросом, что делает синтаксис _ в векторе аргументов функций.
Пример:
(def available-processors
(.availableProcessors (Runtime/getRuntime)))
(prn "available processors: " available-processors)
(def pool
(Executors/newFixedThreadPool (+ 2 available-processors)))
(defn dothreads!
[func & {thread-count :threads exec-count :times :or {thread-count 1 exec-count 1}}]
(dotimes [t thread-count]
(.submit pool #(dotimes [_ exec-count] (func)))))
Что делает подчеркивание в форме:
#(dotimes [_ exec-count] (func))