user=> (use 'clojure.contrib.greatest-least) user=> (all-greatest 3 6 90 35.2 90) (90 90)
(defn all-greatest "Returns all the greatest elements." [& args] (apply all-greatest-by identity args))
Comments top
No comments for all-greatest. Log in to add a comment.