IntArray array = new ArrayIntList();
array.add(10);
array.add(20);
array.add(30);
int element = array.get(0);
IntCollection collection = new ArrayIntList();
collection.add(10);
collection.add(20);
collection.add(30);
IntIterator iterator = collection.iterator();
while (iterator.hasNext()) {
int element = iterator.nextElement();
}
IntIntMap map = new ArrayIntIntMap();
map.put(1, 10);
map.put(2, 20);
map.put(3, 30);
int value = map.get(2);