com.koloboke.function
Interface FloatObjConsumer<U>

Type Parameters:
U - the type of the second argument the operation

public interface FloatObjConsumer<U>

Represents an operation that accepts a float-valued and an object-valued argument, and returns no result. This is the (float, reference) specialization of BiConsumer. Unlike most other functional interfaces, FloatObjConsumer is expected to operate via side-effects.

See Also:
BiConsumer

Method Summary
 void accept(float a, U b)
          Performs this operation on the given arguments.
 

Method Detail

accept

void accept(float a,
            U b)
Performs this operation on the given arguments.

Parameters:
a - the first input argument
b - the second input argument