Match() protected abstract méthode

Validation method to determine whether a docid should be in the result set.
protected abstract Match ( int docid ) : bool
docid int docid to be tested
Résultat bool
Exemple #1
0
 protected override bool Match(int docid)
 {
     return(outerInstance.Match(docid));
 }
Exemple #2
0
 public virtual bool Get(int docid)
 {
     return(bits.Get(docid) && outerInstance.Match(docid));
 }
Exemple #3
0
 protected internal override bool Match(int docid)
 {
     return(OuterInstance.Match(docid));
 }