How does the speed of 

 

Int x = myLinkedMap.indexOf(someObject);

 

compare to using a hashMap like:

 

int x = objectToIndexMap.get(someObject);

 

Thanks

Andrew

Reply via email to