public TermQuery(IPostingList postings)
 {
     this.postings      = postings;
     this.matchIterator = new MatchIterator(postings.GetEnumerator());
     this.consumed      = false;
 }
Exemple #2
0
 public IEnumerator <Occurrence> GetEnumerator()
 {
     return(list.GetEnumerator());
 }