Interface TriFunction<T,U,V,R>

Type Parameters:
T - first argument type for apply
U - second argument type for apply
V - third argument type for apply
R - return value type for apply
All Known Subinterfaces:
FunctionOneOrTwoOrThree<T,U,V,R>
All Known Implementing Classes:
Block

public interface TriFunction<T,U,V,R>
Extension of BiFunction to three arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    default <W> TriFunction<T,U,V,W>
    andThen(Function<? super R,? extends W> after)
     
    apply(T t, U u, V v)
     
  • Method Details