Match() protected abstract method

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
return bool
コード例 #1
0
 protected override bool Match(int docid)
 {
     return(outerInstance.Match(docid));
 }
コード例 #2
0
 public virtual bool Get(int docid)
 {
     return(bits.Get(docid) && outerInstance.Match(docid));
 }
コード例 #3
0
 protected internal override bool Match(int docid)
 {
     return(OuterInstance.Match(docid));
 }