final int position = iterator.advance( targetPosition );
if ( position==DocIdSetIterator.NO_MORE_DOCS )
return result; //exit condition
if ( position == targetPosition ) {
if ( ++votes == iteratorSize ) {
result.fastSet( position );
votes = 0;
targetPosition++;
}
}
else {