Interface Map2<A,B,T>

All Superinterfaces:
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 BiFunction<A,B,T>
Deprecated.
Use BiFunction instead.
Maps two objects of type A and B respectively to an object of type T.
  • Method Summary

    Modifier and Type
    Method
    Description
    default T
    apply(A a, B b)
    Deprecated.
     
    map(A a, B b)
    Deprecated.
    Maps a and b to the target object.

    Methods inherited from interface java.util.function.BiFunction

    andThen
  • Method Details

    • 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 BiFunction<A,B,T>