webit.script.lang.iter.FloatArrayIter Maven / Gradle / Ivy
// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.lang.iter;
/**
*
* @author Zqq
*/
public final class FloatArrayIter extends AbstractArrayIter {
private final float[] array;
public FloatArrayIter(float[] array) {
super(array.length - 1);
this.array = array;
}
@Override
public Object next() {
return array[++_index];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy