com.meliorbis.numerics.generic.primitives.DoubleSettableIterator 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.primitives;
import java.util.PrimitiveIterator;
import com.meliorbis.numerics.generic.SettableIterator;
/**
* Specialisation of ISetableIterator for primitive doubles
*/
public interface DoubleSettableIterator extends SettableIterator, PrimitiveIterator.OfDouble
{
/**
* Sets the current position's value to be the provided one
*
* @param val_ The new value to set
*/
public void set(double val_);
}