#include <expanddecider.h>
Inheritance diagram for Xapian::ExpandDeciderFilterTerms:
Public Member Functions | |
template<class Iterator> | |
ExpandDeciderFilterTerms (Iterator reject_begin, Iterator reject_end) | |
The two iterators specify a list of terms to be rejected. | |
virtual bool | operator() (const std::string &term) const |
Do we want this term in the ESet? |
ExpandDeciderFilterTerms provides an easy way to filter out terms from a fixed list when generating an ESet.
|
The two iterators specify a list of terms to be rejected. reject_begin and reject_end can be any input_iterator type which returns std::string or char * (e.g. TermIterator or char **). |
|
Do we want this term in the ESet?
Implements Xapian::ExpandDecider. |