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