Increments the named counter in *report-counters*, a ref to a map.
Does nothing if *report-counters* is nil.
(defn inc-report-counter
"Increments the named counter in *report-counters*, a ref to a map.
Does nothing if *report-counters* is nil."
{:added "1.1"}
[name]
(when *report-counters*
(dosync (commute *report-counters* assoc name
(inc (or (*report-counters* name) 0))))))
Comments top
No comments for inc-report-counter. Log in to add a comment.