com.koloboke.function
Interface ObjDoubleConsumer<T>
- Type Parameters:
T
- the type of the first argument to the operation
public interface ObjDoubleConsumer<T>
Represents an operation that accepts
an object-valued and
a double
-valued argument,
and returns no result. This is
the (reference,
double)
specialization of BiConsumer
.
Unlike most other functional interfaces, ObjDoubleConsumer
is
expected to operate via side-effects.
- See Also:
BiConsumer
Method Summary |
void |
accept(T a,
double b)
Performs this operation on the given arguments. |
accept
void accept(T a,
double b)
- Performs this operation on the given arguments.
- Parameters:
a
- the first input argumentb
- the second input argument