Uses of Class
com.google.mu.util.stream.BiCollection
Package
Description
BiStream, BiCollector, MoreStreams, MoreCollectors etc.
-
Uses of BiCollection in com.google.mu.util.stream
Modifier and TypeMethodDescriptionstatic <L,
R> BiCollection <L, R> BiCollection.of()
Deprecated.Returns an emptyBiCollection
.static <L,
R> BiCollection <L, R> BiCollection.of
(L left, R right) Deprecated.Returns aBiCollection
forleft
andright
.static <L,
R> BiCollection <L, R> BiCollection.of
(L left1, R right1, L left2, R right2) Deprecated.Returns aBiCollection
for two pairs.static <L,
R> BiCollection <L, R> BiCollection.of
(L left1, R right1, L left2, R right2, L left3, R right3) Deprecated.Returns aBiCollection
for three pairs.static <L,
R> BiCollection <L, R> BiCollection.of
(L left1, R right1, L left2, R right2, L left3, R right3, L left4, R right4) Deprecated.Returns aBiCollection
for four pairs.static <L,
R> BiCollection <L, R> BiCollection.of
(L left1, R right1, L left2, R right2, L left3, R right3, L left4, R right4, L left5, R right5) Deprecated.Returns aBiCollection
for five pairs.Modifier and TypeMethodDescriptionstatic <T,
L, R> Collector <T, ?, BiCollection<L, R>> BiCollection.toBiCollection
(Function<? super T, ? extends L> leftFunction, Function<? super T, ? extends R> rightFunction) Deprecated.Returns aCollector
that extracts the pairs from the input stream, and then collects them into aBiCollection
.