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

Method contains

output/java_guava/1.4.17/AbstractTable.java:67–71  ·  view source on GitHub ↗
(@Nullable Object rowKey, @Nullable Object columnKey)

Source from the content-addressed store, hash-verified

65 }
66
67 @Override
68 public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
69 Map<C, V> row = Maps.safeGet(rowMap(), rowKey);
70 return row != null && Maps.safeContainsKey(row, columnKey);
71 }
72
73 @Override
74 public V get(@Nullable Object rowKey, @Nullable Object columnKey) {

Callers

nothing calls this directly

Calls 3

safeGetMethod · 0.95
safeContainsKeyMethod · 0.95
rowMapMethod · 0.65

Tested by

no test coverage detected