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

Method get

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

safeGetMethod · 0.95
rowMapMethod · 0.65

Tested by

no test coverage detected