com.meliorbis.numerics.generic.ParallelIterator 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;
/**
* Indicates that an iterator can iterate over the same range multiple times
*
* @author Tobias Grasl
*/
public interface ParallelIterator
{
public boolean hasNextParallel();
public int nextParallel();
public int parallelCount();
}