Interface Long2LongBiConsumer
- All Superinterfaces:
BiConsumer<Long,Long>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for a
BiConsumer with two primitive long parameters.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptLong(long left, long right) Performs this operation on the given parameters.default BiConsumer<Long,Long> andThen(BiConsumer<? super Long, ? super Long> after) Deprecated.default Long2LongBiConsumerandThenLong(Long2LongBiConsumer after)
-
Method Details
-
acceptLong
void acceptLong(long left, long right) Performs this operation on the given parameters.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<Long,Long>
-
andThenLong
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Long2LongBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<Long,Long>
-