Returns the number of documents of the intersection of this set with another set. May be more efficient than actually creating the intersection and then getting its size.
(DocSet other)
| 84 | * efficient than actually creating the intersection and then getting its size. |
| 85 | */ |
| 86 | public abstract int intersectionSize(DocSet other); |
| 87 | |
| 88 | /** Returns true if these sets have any elements in common */ |
| 89 | public abstract boolean intersects(DocSet other); |
no outgoing calls