I was using com.google.common.collect.PrimitiveArrays
from Google Collections, however I cannot find it in Guava, was it renamed? Where can I find it?
views:
113answers:
1
+5
A:
There are classes in com.google.common.primitives
such as Ints
, Doubles
, Floats
, etc. that I think have the functionality of the old PrimitiveArrays
class (and then some).
Paul Blessing
2010-06-02 17:53:48