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

com.annimon.stream.operator.DoubleArray Maven / Gradle / Ivy

The newest version!
package com.annimon.stream.operator;

import com.annimon.stream.iterator.PrimitiveIterator;

public class DoubleArray extends PrimitiveIterator.OfDouble {

    private final double[] values;
    private int index;

    public DoubleArray(double[] values) {
        this.values = values;
        index = 0;
    }

    @Override
    public double nextDouble() {
        return values[index++];
    }

    @Override
    public boolean hasNext() {
        return index < values.length;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy