Interface BiFunction<A,​B,​OUT>

  • All Superinterfaces:
    java.io.Serializable
    All Known Subinterfaces:
    HBaseDataAccessor.ConfFactory
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @Stable
    @FunctionalInterface
    public interface BiFunction<A,​B,​OUT>
    extends java.io.Serializable
    Binary function of two arguments.
    • Method Detail

      • apply

        OUT apply​(A first,
                  B second)