All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.meliorbis.numerics.generic.impl.ReductionBase Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
/**
 * 
 */
package com.meliorbis.numerics.generic.impl;

import java.util.Iterator;

/**
 * Base interface for operations that reduce an iterator to a single value
 * 
 * @author Tobias Grasl
 *
 * @param  The type iterated over and returned
 * @param  The type of iterator accepted by the operation
 * @param  The Exception that may be thrown by the operation
 */
public interface ReductionBase, E extends Exception>
{
	T perform(I iterator_) throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy