Interface Map2<A,​B,​T>

  • All Superinterfaces:
    java.util.function.BiFunction<A,​B,​T>
    All Known Subinterfaces:
    Binary<T>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @Deprecated
    @FunctionalInterface
    public interface Map2<A,​B,​T>
    extends java.util.function.BiFunction<A,​B,​T>
    Deprecated.
    Use BiFunction instead.
    Maps two objects of type A and B respectively to an object of type T.
    • Method Detail

      • map

        T map​(A a,
              B b)
        Deprecated.
        Maps a and b to the target object.
      • apply

        default T apply​(A a,
                        B b)
        Deprecated.
        Specified by:
        apply in interface java.util.function.BiFunction<A,​B,​T>