Package com.speedment.common.function
Interface LongBiFunction<U>
-
- 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 LongBiFunction<U>
Function that takes two primitivelongsand returns an object.- Since:
- 1.0.3
- Author:
- Emil Forslund
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Uapply(long first, long second)Takes two primitivelong-values and returns an object.
-
-
-
Method Detail
-
apply
U apply(long first, long second)
Takes two primitivelong-values and returns an object.- Parameters:
first- the firstlongsecond- the firstlong- Returns:
- the result
-
-