Package org.glassfish.pfl.basic.func
Interface BinaryFunction<S,T,R>
-
- All Superinterfaces:
java.util.function.BiFunction<S,T,R>
- All Known Implementing Classes:
BinaryFunctionBase
,Guard.Base.IntFunc
@Deprecated public interface BinaryFunction<S,T,R> extends java.util.function.BiFunction<S,T,R>
Deprecated.replaced in JDK8 byBiFunction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default R
apply(S arg1, T arg2)
Deprecated.R
evaluate(S arg1, T arg2)
Deprecated.
-