Class BinaryFunctionBase<S,​T,​R>

  • All Implemented Interfaces:
    java.util.function.BiFunction<S,​T,​R>, BinaryFunction<S,​T,​R>

    public abstract class BinaryFunctionBase<S,​T,​R>
    extends FunctionBase
    implements BinaryFunction<S,​T,​R>
    • Constructor Summary

      Constructors 
      Constructor Description
      BinaryFunctionBase​(java.lang.String name)  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract R eval​(S arg1, T arg2)  
      R evaluate​(S arg1, T arg2)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.function.BiFunction

        andThen
    • Constructor Detail

      • BinaryFunctionBase

        public BinaryFunctionBase​(java.lang.String name)
    • Method Detail

      • eval

        public abstract R eval​(S arg1,
                               T arg2)