Interface TBiFunction<T,​U,​R>

All Known Subinterfaces:
TBinaryOperator<T>
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 TBiFunction<T,​U,​R>
  • Method Summary

    Modifier and Type
    Method
    Description
    default <V> TBiFunction<T,​U,​V>
    andThen​(TFunction<? super R,​? extends V> after)
     
    apply​(T t, U u)
     
  • Method Details

    • apply

      R apply(T t, U u)
    • andThen

      default <V> TBiFunction<T,​U,​V> andThen(TFunction<? super R,​? extends V> after)