Searched defs:union (Results 1 - 5 of 5) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DDocSetBase.java94 public DocSet union(DocSet other) { method in class:DocSetBase
H A DBitDocSet.java196 public DocSet union(DocSet other) { method in class:BitDocSet
199 newbits.union(((BitDocSet)other).bits);
H A DDocSet.java116 * Returns the union of this set with another set. Neither set is modified - a new DocSet is
118 * @return a DocSet representing the union
120 public DocSet union(DocSet other); method in interface:DocSet
123 * Returns the number of documents of the union of this set with another set.
124 * May be more efficient than actually creating the union and then getting it's size.
H A DHashDocSet.java226 public DocSet union(DocSet other) { method in class:HashDocSet
248 return other.union(this);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DOpenBitSet.java52 <th></th> <th>cardinality</th> <th>intersect_count</th> <th>union</th> <th>nextSetBit</th> <th>get</th> <th>iterator</th>
67 <th></th> <th>cardinality</th> <th>intersect_count</th> <th>union</th> <th>nextSetBit</th> <th>get</th> <th>iterator</th>
580 /** Returns the popcount or cardinality of the union of the two sets.
757 public void union(OpenBitSet other) { method in class:OpenBitSet
811 //** see {@link union} */
813 union(other);

Completed in 27 milliseconds