Uses of Class
com.google.mu.util.stream.BiCollection

Packages that use BiCollection
Package
Description
BiStream, BiCollector, MoreStreams, MoreCollectors etc.
  • Uses of BiCollection in com.google.mu.util.stream

    Modifier and Type
    Method
    Description
    static <L, R> BiCollection<L,R>
    BiCollection.of()
    Deprecated.
    Returns an empty BiCollection.
    static <L, R> BiCollection<L,R>
    BiCollection.of(L left, R right)
    Deprecated.
    Returns a BiCollection for left and right.
    static <L, R> BiCollection<L,R>
    BiCollection.of(L left1, R right1, L left2, R right2)
    Deprecated.
    Returns a BiCollection 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 a BiCollection 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 a BiCollection 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 a BiCollection for five pairs.
    Methods in com.google.mu.util.stream that return types with arguments of type BiCollection
    Modifier and Type
    Method
    Description
    static <T, L, R> Collector<T,?,BiCollection<L,R>>
    BiCollection.toBiCollection(Function<? super T,? extends L> leftFunction, Function<? super T,? extends R> rightFunction)
    Deprecated.
    Returns a Collector that extracts the pairs from the input stream, and then collects them into a BiCollection.