MCPcopy Create free account
hub / github.com/apache/solr / andNotSize

Method andNotSize

solr/core/src/java/org/apache/solr/search/DocSet.java:116–118  ·  view source on GitHub ↗

Returns the number of documents in this set that are not in the other set.

(DocSet other)

Source from the content-addressed store, hash-verified

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

Callers 4

doSingleMethod · 0.95
numDocsMethod · 0.95
getFieldMissingCountMethod · 0.45
getSubsetSizeMethod · 0.45

Calls 2

sizeMethod · 0.95
intersectionSizeMethod · 0.95

Tested by 1

doSingleMethod · 0.76