Interface BinaryFunction<S,T,R>

All Superinterfaces:
BiFunction<S,T,R>
All Known Implementing Classes:
BinaryFunctionBase, Guard.Base.IntFunc

@Deprecated public interface BinaryFunction<S,T,R> extends BiFunction<S,T,R>
Deprecated.
replaced in JDK8 by BiFunction
  • Method Summary

    Modifier and Type
    Method
    Description
    default R
    apply(S arg1, T arg2)
    Deprecated.
     
    evaluate(S arg1, T arg2)
    Deprecated.
     

    Methods inherited from interface java.util.function.BiFunction

    andThen
  • Method Details

    • evaluate

      R evaluate(S arg1, T arg2)
      Deprecated.
    • apply

      default R apply(S arg1, T arg2)
      Deprecated.
      Specified by:
      apply in interface BiFunction<S,T,R>