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

com.meliorbis.numerics.generic.SettableIndexedIterator 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;

/**
 * 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy