public boolean contains(int v) {
return containsKey(v);
}
public IntIterator iterator() {
return new IntIterator() {
int nextEntry = nextEntry(0);
int lastEntry = -1;
int nextEntry(int index) {
while (index < keys.length && states[index] != OCCUPIED)