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

Method putAll

output/java_guava/1.4.19/ImmutableTable.java:224–230  ·  view source on GitHub ↗

Associates all of the given table's keys and values in the built table. Duplicate row key column key pairs are not allowed, and will cause #build to fail. @throws NullPointerException if any key or value in table is null

(Table<? extends R, ? extends C, ? extends V> table)

Source from the content-addressed store, hash-verified

222 */
223
224 @CanIgnoreReturnValue
225 public Builder<R, C, V> putAll(Table<? extends R, ? extends C, ? extends V> table) {
226 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
227 put(cell);
228 }
229 return this;
230 }
231
232 /**
233 * Returns a newly-created immutable table.

Callers

nothing calls this directly

Calls 2

putMethod · 0.95
cellSetMethod · 0.65

Tested by

no test coverage detected