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

com.meliorbis.numerics.generic.primitives.DoubleSettableIterator 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.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_);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy