116117118119120121122
public FastIterator fastIterator() { return LinkedList.fastIterator; } public FastIterator fullFastIterator() { return new FullFastIterator( this.table ); }
124125126127128129130
public FastIterator fullFastIterator(LeftTuple leftTuple) { final int hashCode = this.index.hashCodeOf( leftTuple ); final int row = indexOf( hashCode, this.table.length ); return new FullFastIterator( this.table, row ); }
110111112113114115116
118119120121122123124