Uses of Interface
zone.lamprey.function.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 interfaceObjDoubleConsumer<T>Represents an operation that accepts an object-valued and adouble-valued argument, and returns no result.interfaceObjIntConsumer<T>Represents an operation that accepts an object-valued and aint-valued argument, and returns no result.interfaceObjLongConsumer<T>Represents an operation that accepts an object-valued and along-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>>
FRunnable. andThen(F after)LikeRunnable.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 composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default BiConsumer<T,U>BiConsumer. andThenL(Consumer<? super T> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default BiConsumer<T,U>BiConsumer. andThenR(Consumer<? super U> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.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 composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default ObjDoubleConsumer<T>ObjDoubleConsumer. andThen(BiConsumer<? super T,? super Double> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default ObjIntConsumer<T>ObjIntConsumer. andThen(BiConsumer<? super T,? super Integer> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default ObjLongConsumer<T>ObjLongConsumer. andThen(BiConsumer<? super T,? super Long> after)Returns a composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default TriConsumer<T,U,V>TriConsumer. andThenLM(BiConsumer<? super T,? super U> after)Returns a composedTriConsumerthat performs, in sequence, this operation followed by theafteroperation.default TriConsumer<T,U,V>TriConsumer. andThenLR(BiConsumer<? super T,? super V> after)Returns a composedTriConsumerthat performs, in sequence, this operation followed by theafteroperation.default TriConsumer<T,U,V>TriConsumer. andThenMR(BiConsumer<? super U,? super V> after)Returns a composedTriConsumerthat performs, in sequence, this operation followed by theafteroperation.