public boolean contains(float v) {
return getEntry(v) != null;
}
public FloatIterator iterator() {
return new FloatIterator() {
Entry currEntry = null;
int nextList = nextList(0);
Entry nextEntry = nextList == -1 ? null : data[nextList];
int nextList(int index) {