(ns utils
(:gen-class :name Utils
:methods [#^{:static true} [sum [java.util.Collection] long]]))
(defn sum [coll] (reduce + coll))
(defn -sum [coll] (sum coll))
Please explain this code!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Having not used the Clojure gen-class facilities, my answer might be a little fuzzy:
This will generate the necessary byte-code which is about equivilant to the following Java pseudo code:
-suminstructs Clojure to generate the Java method.(sum coll)is the call to the first definition ofsum, which is just a regular Clojure function definition