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