Interface Function2<A,​B,​Z>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface Function2<A,​B,​Z>
    • Method Detail

      • apply

        Z apply​(A a,
                B b)
      • partial1

        static <A,​B,​Z> java.util.function.Function<B,​Z> partial1​(Function2<A,​B,​Z> f2,
                                                                                   A a)
      • partial2

        static <A,​B,​Z> java.util.function.Function<A,​Z> partial2​(Function2<A,​B,​Z> f2,
                                                                                   B b)