@FunctionalInterface public interface ObjFloatConsumer<T>
float
-valued argument, and returns no result. This is the
(reference, long)
specialization of BiConsumer
for float
. Unlike most other functional
interfaces, ObjFloatConsumer
is expected to operate via side-effects.
This is a functional interface whose functional method is
accept(Object, float)
.
BiConsumer
Modifier and Type | Method and Description |
---|---|
void |
accept(T t,
float value)
Performs this operation on the given arguments.
|
void accept(T t, float value)
t
- the first input argumentvalue
- the second input argumentCopyright © 2018. All rights reserved.