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

Method asMap

output/java_guava/1.4.18/AtomicLongMap.java:315–318  ·  view source on GitHub ↗

Returns a live, read-only view of the map backing this AtomicLongMap.

()

Source from the content-addressed store, hash-verified

313
314
315 public Map<K, Long> asMap() {
316 Map<K, Long> result = asMap;
317 return (result == null) ? asMap = createAsMap() : result;
318 }
319
320 private Map<K, Long> createAsMap() {
321 return Collections.unmodifiableMap(Maps.transformValues(

Callers

nothing calls this directly

Calls 1

createAsMapMethod · 0.95

Tested by

no test coverage detected