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

Method containsColumn

output/java_guava/1.4.17/StandardTable.java:88–99  ·  view source on GitHub ↗
(@Nullable Object columnKey)

Source from the content-addressed store, hash-verified

86 }
87
88 @Override
89 public boolean containsColumn(@Nullable Object columnKey) {
90 if (columnKey == null) {
91 return false;
92 }
93 for (Map<C, V> map : backingMap.values()) {
94 if (safeContainsKey(map, columnKey)) {
95 return true;
96 }
97 }
98 return false;
99 }
100
101 @Override
102 public boolean containsRow(@Nullable Object rowKey) {

Callers

nothing calls this directly

Calls 2

valuesMethod · 0.65
safeContainsKeyMethod · 0.45

Tested by

no test coverage detected