Interface BinaryVoidFunction<S,T>

All Superinterfaces:
BiConsumer<S,T>
All Known Implementing Classes:
BinaryVoidFunctionBase

@Deprecated public interface BinaryVoidFunction<S,T> extends BiConsumer<S,T>
Deprecated.
replaced by BiConsumer
  • Method Summary

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

    Methods inherited from interface java.util.function.BiConsumer

    andThen
  • Method Details

    • evaluate

      void evaluate(S arg1, T arg2)
      Deprecated.
    • accept

      default void accept(S arg1, T arg2)
      Deprecated.
      Specified by:
      accept in interface BiConsumer<S,T>