com.meliorbis.numerics.generic.impl.IndexedReduction 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.SubSpaceSplitIterator;
/**
* Interface for reduction operations which also require access to the current index
*
* @author Tobias Grasl
*
* @param The type iterated over and returned
* @param The Exception that may be thrown by the operation
*/
public interface IndexedReduction extends ReductionBase, E>
{
}