/**
* Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
* All rights reserved. Use is subject to license terms. See LICENSE.TXT
*/
package org.diirt.util.array;
/**
* A collection of {@code int}s.
*
* @author Gabriele Carcassi
*/
public interface CollectionInt extends CollectionNumber {
@Override
IteratorInt iterator();
}