Uses of Interface
zone.lamprey.function.BiConsumer

Packages that use BiConsumer 
Package Description
zone.lamprey.function
Functional interfaces provide target types for lambda expressions and method references.
  • Uses of BiConsumer in zone.lamprey.function

    Subinterfaces of BiConsumer in zone.lamprey.function 
    Modifier and Type Interface Description
    interface  ObjDoubleConsumer<T>
    Represents an operation that accepts an object-valued and a double-valued argument, and returns no result.
    interface  ObjIntConsumer<T>
    Represents an operation that accepts an object-valued and a int-valued argument, and returns no result.
    interface  ObjLongConsumer<T>
    Represents an operation that accepts an object-valued and a long-valued argument, and returns no result.
    Methods in zone.lamprey.function with type parameters of type BiConsumer 
    Modifier and Type Method Description
    default <T,​ U,​ F extends BiConsumer<T,​ U>>
    F
    Runnable.andThen​(F after)
    Like Runnable.andThen(Runnable), but creates a BiConsumer.
    Methods in zone.lamprey.function that return BiConsumer 
    Modifier and Type Method Description
    default BiConsumer<T,​U> BiConsumer.andThen​(BiConsumer<? super T,​? super U> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default BiConsumer<T,​U> BiConsumer.andThenL​(Consumer<? super T> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default BiConsumer<T,​U> BiConsumer.andThenR​(Consumer<? super U> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default BiConsumer<V,​U> TriConsumer.applyPartialL​(T t)
    Performs a partial application, resulting in a function that calls this with its argument and the argument given here.
    default BiConsumer<T,​V> TriConsumer.applyPartialM​(U u)
    Performs a partial application, resulting in a function that calls this with its argument and the argument given here.
    default BiConsumer<T,​U> TriConsumer.applyPartialR​(V v)
    Performs a partial application, resulting in a function that calls this with its argument and the argument given here.
    default BiConsumer<T,​U> BiFunction.consume​(Consumer<R> consumer)
    Consume a function.
    default BiConsumer<T,​U> ToDoubleBiFunction.consume​(DoubleConsumer consumer)
    Consume a function.
    default BiConsumer<T,​U> ToIntBiFunction.consume​(IntConsumer consumer)
    Consume a function.
    default BiConsumer<T,​U> ToLongBiFunction.consume​(LongConsumer consumer)
    Consume a function.
    Methods in zone.lamprey.function with parameters of type BiConsumer 
    Modifier and Type Method Description
    default BiConsumer<T,​U> BiConsumer.andThen​(BiConsumer<? super T,​? super U> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default ObjDoubleConsumer<T> ObjDoubleConsumer.andThen​(BiConsumer<? super T,​? super Double> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default ObjIntConsumer<T> ObjIntConsumer.andThen​(BiConsumer<? super T,​? super Integer> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default ObjLongConsumer<T> ObjLongConsumer.andThen​(BiConsumer<? super T,​? super Long> after)
    Returns a composed BiConsumer that performs, in sequence, this operation followed by the after operation.
    default TriConsumer<T,​U,​V> TriConsumer.andThenLM​(BiConsumer<? super T,​? super U> after)
    Returns a composed TriConsumer that performs, in sequence, this operation followed by the after operation.
    default TriConsumer<T,​U,​V> TriConsumer.andThenLR​(BiConsumer<? super T,​? super V> after)
    Returns a composed TriConsumer that performs, in sequence, this operation followed by the after operation.
    default TriConsumer<T,​U,​V> TriConsumer.andThenMR​(BiConsumer<? super U,​? super V> after)
    Returns a composed TriConsumer that performs, in sequence, this operation followed by the after operation.