Today I was looking at the following piece of Android source code:
The type is declared as:
public class IntArrayEvaluator implements TypeEvaluator<int[]>
My understanding of Java generics is that primitive types and arrays are not supported.
Am I correct in that understanding?
If I am correct is this something unique to Android's implementation of Java?