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