There is an instruction in 2nd chapter of Tiger Developer book :
Map<
String,List<List<int[]>>> map = getWeiredMap();
Am I understanding it right ?
Map
< String , List<List<int[]>>
> map = getWeiredMap();
The key can only be String .
Now value :
List<List<int[]>>
List
< List<int[]>
> The value can only be a List .
Now what this list is having ...
List has index-value pair , index are not
necessary ... So value of List is :
List<int[]>
And what this list is having .... is confusing me ...
Can any body help ...
thanks a lot .