Interface Function2<T0,T1,R>

  • Type Parameters:
    R - Result type
    T0 - Type of argument #0
    T1 - Type of argument #1
    All Superinterfaces:
    Function<R>
    All Known Implementing Classes:
    Functions.Ignore


    public interface Function2<T0,T1,R>
    extends Function<R>
    Function with two parameters.
    • Method Detail

      • apply

        R apply​(T0 v0,
                T1 v1)