Package cz.o2.proxima.core.functional
Interface BiFunction<A,B,OUT>
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
HBaseDataAccessor.ConfFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Stable @FunctionalInterface public interface BiFunction<A,B,OUT> extends java.io.Serializable
Binary function of two arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OUT
apply(A first, B second)
-