Package fj.function

Interface Effect2<A,B>

All Superinterfaces:
BiConsumer<A,B>

public interface Effect2<A,B> extends BiConsumer<A,B>
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    accept(A a, B b)
     
    void
    f(A a, B b)
     
    default F2<A,B,Unit>
     

    Methods inherited from interface java.util.function.BiConsumer

    andThen
  • Method Details

    • f

      void f(A a, B b)
    • accept

      default void accept(A a, B b)
      Specified by:
      accept in interface BiConsumer<A,B>
    • toF2

      default F2<A,B,Unit> toF2()