Interface MapFrom3<T,R>

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 MapFrom3<T,R>
A 3-arg function of the signature of (T, T, T) -> R.
  • Method Summary

    Modifier and Type
    Method
    Description
    map(T a, T b, T c)
     
  • Method Details

    • map

      R map(T a, T b, T c)