tags:

views:

113

answers:

1

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?

+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