Interface ICombiner<T>

  • Type Parameters:
    T - the type of the input values and the combined value.

    public interface ICombiner<T>
    Interface for classes that are able to combine multiple objects into one result.
    • Method Detail

      • identity

        T identity()
      • combine

        T combine​(T a,
                  T b)