Modul speiger.src.collections
Schnittstelle LongFloatConsumer
- Alle Superschnittstellen:
BiConsumer<Long,Float>
A Type Specific BiConsumer class to reduce boxing/unboxing and that fills the gaps that java has.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidaccept(long k, float v) A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.default voidVeraltet.Please use the corresponding type-specific function instead.default LongFloatConsumerandThen(BiConsumer<? super Long, ? super Float> after) Veraltet.Please use the corresponding type-specific function instead.default LongFloatConsumerandThen(LongFloatConsumer after) Type Specific sequencing method to reduce boxing/unboxing.
-
Methodendetails
-
accept
void accept(long k, float v) A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.- Parameter:
k- the first input argumentv- the second input argument
-
andThen
Type Specific sequencing method to reduce boxing/unboxing.- Parameter:
after- a operation that should be performed afterwards- Gibt zurück:
- a sequenced biconsumer that does 2 operations
- Löst aus:
NullPointerException- if after is null
-
accept
Veraltet.Please use the corresponding type-specific function instead.This default implementation delegates to the corresponding type-specific function.
- Angegeben von:
acceptin SchnittstelleBiConsumer<Long,Float>
-
andThen
Veraltet.Please use the corresponding type-specific function instead.This default implementation delegates to the corresponding type-specific function.
- Angegeben von:
andThenin SchnittstelleBiConsumer<Long,Float>
-