Package com.google.mu.util.stream
Interface BiAccumulator<C,L,R>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface modeling a builder funcction that accepts two parameters.
- Since:
- 5.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accumulate
(C container, L left, R right) default BiConsumer
<L, R> Returns aBiConsumer
that accumulates pairs intocontainer
.
-
Method Details
-
accumulate
-
into
Returns aBiConsumer
that accumulates pairs intocontainer
.
-