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

Method putAll

output/java_guava/1.4.17/AbstractTable.java:102–107  ·  view source on GitHub ↗
(Table<? extends R, ? extends C, ? extends V> table)

Source from the content-addressed store, hash-verified

100 }
101
102 @Override
103 public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
104 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
105 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
106 }
107 }
108
109 private transient Set<Cell<R, C, V>> cellSet;
110

Callers

nothing calls this directly

Calls 5

putMethod · 0.95
cellSetMethod · 0.65
getRowKeyMethod · 0.65
getColumnKeyMethod · 0.65
getValueMethod · 0.65

Tested by

no test coverage detected