Class BinaryFunctorImpl<T>

  • All Implemented Interfaces:
    BiFunction<T,​T,​T>

    @Deprecated
    public abstract class BinaryFunctorImpl<T>
    extends Object
    implements BiFunction<T,​T,​T>
    Deprecated.
    A function object that takes two arguments and returns a result. The two arguments are both of type T and the result is also of type T
    • Constructor Detail

      • BinaryFunctorImpl

        public BinaryFunctorImpl()
        Deprecated.
    • Method Detail

      • apply

        public abstract T apply​(T firstArg,
                                T secondArg)
        Deprecated.
        Executes the function and returns the result.
        Specified by:
        apply in interface BiFunction<T,​T,​T>
        Throws:
        FunctionException
      • bind2

        public Function<T,​T> bind2​(T p_param2)
        Deprecated.