0

Using the Javolution 6.0.0 Snaphot from February.

According to this we can iterate over the FastMap, but I keep getting an java.lang.UnsupportedOperationException

http://javolution.org/target/site/apidocs/javolution/util/FastMap.html

My code

FastMap<String,String> map = new FastMap<String, String>();
map.put("1", "2");

for (FastMap.Entry<String, String> m : map.entrySet()) {
    String key = m.getKey();
    String value = m.getValue();
}

Further more from the samples explained in the link... map.head and map.tail don't even exist.

So then how do we do it?

user432024
  • 4,392
  • 8
  • 49
  • 85

1 Answers1

-2

The February snapshot version was not ready for release. Now that the official 6.0.0 is out, everything should work fine.

dautelle
  • 31
  • 1