Interface Reducer<T>
-
- Type Parameters:
T
- the type of the arguments and the result
- All Superinterfaces:
BiFunction<T,T,T>
,Operation
,Serializable
public interface Reducer<T> extends BiFunction<T,T,T>
TheReducer
performs an operation on two values of the same type producing a result of the same type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
apply(T arg1, T arg2)
Applies this function to the given arguments.
-