Returns the number of documents in this set that are not in the other set.
(DocSet other)
| 114 | |
| 115 | /** Returns the number of documents in this set that are not in the other set. */ |
| 116 | public int andNotSize(DocSet other) { |
| 117 | return this.size() - this.intersectionSize(other); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Returns a Query matching these documents with a score of 1. Note that DocSets do not refer to |