On Mon, Aug 10, 2009 at 11:15 PM, Andy Fingerhut<[email protected]> wrote: > I suspect I'm doing something wrong in my mutable Java array > implementation, but I don't see what it could be.
There still seems to be a lot of boxing and unboxing going on. For example, in: (let [[momx momy momz] (offset-momentum bodies) the call to offset-momentum returns a vector of the three doubles, so they would be boxed, so momx momy momz are not primitives. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
