- Type Parameters:
V - the type of the generic argument
- All Superinterfaces:
BiConsumer<V,Double>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for a
BiConsumer with a primitive
double and a generic
V as arguments.
-
Method Summary
default void
void
Performs this operation on the given arguments.
-
Method Details
-
acceptDouble
void acceptDouble(V left,
double right)
Performs this operation on the given arguments.
- Parameters:
left - the first input argument
right - the second input argument
-
-
andThenDouble
- Parameters:
after - the operation to perform after this operation
- Returns:
- a composed
Obj2DoubleBiConsumer that performs in sequence this operation followed by the after operation
-