Interface Function2<A,B,R>

Type Parameters:
A - The first argument.
B - The second argument.
R - The return type.
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,R>
A function that takes in 2 arguments.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    default <V> Function2<A,B,V>
    andThen(Function<? super R,? extends V> after)
     
    apply(A a, B b)