I am using the first solution in this stackoverflow link to create and read a hashMap with 2 keys and one value .i.e
Map<Integer, Map<Integer, V>> map = //...
map.get(2).get(5);
How do I put the key/value pairs on this HashMap?
In short, I am looking to do the equivalent of
myMap.put(key, value);
but for a multi key hashmap.