On 25 January 2012 23:30, Bryce <[email protected]> wrote: [...] > ;All of these spend most of their time in reflection > (apply vector-of :int (range 10000000)) > (apply vector-of :int ^"[J>" (range 10000000)) > (apply vector-of :int ^"[J>" (long-array (range 10000000))) > (apply vector-of :int ^{:tag 'longs} (long-array (range 10000000)))
Just a guess. Have you tried the following? (apply vector-of :long ...) -- Michael Wood <[email protected]> -- 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
