public interface IntDoubleConsumer
extends java.util.function.BiConsumer<java.lang.Integer,java.lang.Double>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(int k,
double v)
A Type Specific operation method to reduce boxing/unboxing
Performs this operation on the given arguments.
|
default void |
accept(java.lang.Integer k,
java.lang.Double v)
Deprecated.
Please use the corresponding type-specific function instead.
|
default IntDoubleConsumer |
andThen(java.util.function.BiConsumer<? super java.lang.Integer,? super java.lang.Double> after)
Deprecated.
Please use the corresponding type-specific function instead.
|
default IntDoubleConsumer |
andThen(IntDoubleConsumer after)
Type Specific sequencing method to reduce boxing/unboxing.
|
void accept(int k,
double v)
k - the first input argumentv - the second input argumentdefault IntDoubleConsumer andThen(IntDoubleConsumer after)
after - a operation that should be performed afterwardsjava.lang.NullPointerException - if after is null@Deprecated
default void accept(java.lang.Integer k,
java.lang.Double v)
This default implementation delegates to the corresponding type-specific function.
accept in interface java.util.function.BiConsumer<java.lang.Integer,java.lang.Double>@Deprecated default IntDoubleConsumer andThen(java.util.function.BiConsumer<? super java.lang.Integer,? super java.lang.Double> after)
This default implementation delegates to the corresponding type-specific function.
andThen in interface java.util.function.BiConsumer<java.lang.Integer,java.lang.Double>