590591592593594595596597598599600
} return true; } public IteratorInt iterator() { return new IteratorInt() { private int i = 0; public boolean hasNext() { return i < nbelem; }
270271272273274275276277278279280
public void sortUnique() { throw new UnsupportedOperationException(); } public IteratorInt iterator() { return new IteratorInt() { int cursor = 0; public boolean hasNext() { return cursor < vec.length; } public int next() {