com.meliorbis.numerics.generic.SettableIndexedIterator 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;
/**
* An iterator over a collection, such as a multidimensional array, that is indexed in
* multiple dimensions, and which is also settable - that is the, underlying object at each
* point can be set
*
* @author Tobias Grasl
*/
public interface SettableIndexedIterator extends SettableIterator
{
/**
* Get multi-dimensional index of the current point in the
* iteration
*
* @return The index of iteration
*/
int[] getIndex();
}