Hacker News new | ask | show | jobs
by philthom 5059 days ago
Check out the Immutable Maps feature, does the same with some nice syntactic sugar - http://docs.guava-libraries.googlecode.com/git/javadoc/com/g...
1 comments

You don't even need to use the Builder directly, just use the structure's "of" method:

   ImmutableSet<Foo> foos = ImmutableSet.of(a, few, elements);
   ImmutableMap<Key, Value> map = ImmutableMap.of(k1, v1, k2, v2);