(defacc minimum (fn [& xs] (when-let [xs (seq (filter identity xs))] (apply min xs))) nil "An empty minimum accumulator. Only numbers can be added.")
Comments top
No comments for minimum. Log in to add a comment.