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