com.meliorbis.numerics.generic.impl.Reduction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
package com.meliorbis.numerics.generic.impl;
import com.meliorbis.numerics.generic.SettableIterator;
/**
* Implementing classes process an iterator and return a value, thereby
* reducing the values the iterator provides
*
* @author Tobias Grasl
*
* @param The type iterated over and returned
* @param The Exception that may be thrown by the operation
*/
public interface Reduction extends ReductionBase, E>
{
}