Interface LongLongToLongFunction
- All Superinterfaces:
LongBinaryOperator
,Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface LongLongToLongFunction extends LongBinaryOperator, Serializable
This file was automatically generated from template file primitivePrimitiveToPrimitiveFunction.stg.
- Since:
- 10.0.
-
Method Summary
Modifier and Type Method Description default long
applyAsLong(long left, long right)
long
valueOf(long left, long right)
-
Method Details
-
valueOf
long valueOf(long left, long right) -
applyAsLong
default long applyAsLong(long left, long right)- Specified by:
applyAsLong
in interfaceLongBinaryOperator
-