Interface Reducible<C,T>

Type Parameters:
C - the type of criteria
T - the element type
All Known Implementing Classes:
Beans
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 Reducible<C,T>
A functional interface whose implementations can reduce an unspecified notional collection of elements to a single element according to some criteria.

This interface is related to, but should not be confused with, the Reducer interface, implementations of which can be used to build Reducible instances.

Author:
Laird Nelson
See Also: