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

Method get

corpus/java/training/guava/collect/AbstractTable.java:74–78  ·  view source on GitHub ↗
(@Nullable Object rowKey, @Nullable Object columnKey)

Source from the content-addressed store, hash-verified

72 }
73
74 @Override
75 public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
76 Map<C, V> row = Maps.safeGet(rowMap(), rowKey);
77 return (row == null) ? null : Maps.safeGet(row, columnKey);
78 }
79
80 @Override
81 public boolean isEmpty() {

Callers

nothing calls this directly

Calls 2

safeGetMethod · 0.95
rowMapMethod · 0.65

Tested by

no test coverage detected