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

Method containsKey

output/java_guava/1.4.19/StandardTable.java:309–314  ·  view source on GitHub ↗
(Object key)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

backingRowMapMethod · 0.95
safeContainsKeyMethod · 0.95

Tested by

no test coverage detected