MCPcopy Create free account
hub / github.com/Card-Forge/forge / combiner

Method combiner

forge-core/src/main/java/forge/util/ItemPool.java:87–93  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

85 }
86
87 @Override
88 public BinaryOperator<ItemPool<T>> combiner() {
89 return (first, second) -> {
90 first.addAll(second);
91 return first;
92 };
93 }
94
95 @Override public Function<ItemPool<T>, ItemPool<T>> finisher() {
96 return Function.identity();

Callers

nothing calls this directly

Calls 1

addAllMethod · 0.45

Tested by

no test coverage detected