I have a map declared as follows-
Map<Date, Long[]> myMap = new TreeMap<Date, Long[]>();
I put some key-value pairs in that map, check the size as follows-
myMap.size(); //returns 29
myMap.values().size(); //returns 31
All the dates are distinct.
Aren’t those two supposed to return the same values?