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

Method containsKey

output/java_guava/1.4.18/StandardTable.java:307–312  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

305 }
306
307 @Override
308 public boolean containsKey(Object key) {
309 Map<C, V> backingRowMap = backingRowMap();
310 return (key != null && backingRowMap != null)
311&& Maps.safeContainsKey(backingRowMap, key);
312 }
313
314 @Override
315 public V get(Object key) {

Callers

nothing calls this directly

Calls 2

backingRowMapMethod · 0.95
safeContainsKeyMethod · 0.95

Tested by

no test coverage detected