
org.matheclipse.generic.interfaces.Aggregator Maven / Gradle / Ivy
The newest version!
package org.matheclipse.generic.interfaces;
/**
* Defines an aggregation operation, i.e. how to aggregate the items of a collection.
*
* @param
*/
public interface Aggregator {
/**
* Defines how this operation aggregates the objects
*
* @param iterable the objects to be aggregated
* @return
*/
public T aggregate(Iterable extends T> iterable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy