Where can I find PrimitiveArrays in Guava?
I was using com.google.common.collect.PrimitiveArrays
from Google Collections, however I cannot find it in Guava, was it renamed? Where can I fin开发者_Go百科d it?
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).
精彩评论