MCPcopy Create free account
hub / github.com/antlr/codebuff / entrySet

Method entrySet

output/java_guava/1.4.19/ImmutableMap.java:499–503  ·  view source on GitHub ↗

Returns an immutable set of the mappings in this map. The entries are in the same order as the parameters used to build this map.

()

Source from the content-addressed store, hash-verified

497 */
498
499 @Override
500 public ImmutableSet<Entry<K, V>> entrySet() {
501 ImmutableSet<Entry<K, V>> result = entrySet;
502 return (result == null) ? entrySet = createEntrySet() : result;
503 }
504
505 abstract ImmutableSet<Entry<K, V>> createEntrySet();
506 private transient ImmutableSet<K> keySet;

Callers 2

keyIteratorMethod · 0.95
hashCodeMethod · 0.95

Calls 1

createEntrySetMethod · 0.95

Tested by

no test coverage detected