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