Returns the documents in this set that are not in the other set. Neither set is modified - a new DocSet is created and returned. @return a DocSet representing this AND NOT other
(DocSet other)
| 111 | * @return a DocSet representing this AND NOT other |
| 112 | */ |
| 113 | public abstract DocSet andNot(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) { |
no outgoing calls