Hi,

(defn sum [^ints arr]
  (areduce arr i ret (int 0)
           (unchecked-add-int ret (aget arr i))))


2010/10/18 Dmitriy S. <samborsk...@yahoo.com>:
>
> (defn sum [arr]
>  (loop [i (int 0) s (int 0)]
>    (if (= i *N*) s
^^^^^^^^^^^

You still doing non-primitive ops here. Also Check for areduce:

(defn sum [^ints arr]
  (areduce arr i ret (int 0)
           (unchecked-add-int ret (aget arr i))))

Jürgen

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to