ExpandDecider subclass which rejects terms using two ExpandDeciders. More...
Public Member Functions | |
ExpandDeciderAnd (const ExpandDecider &first_, const ExpandDecider &second_) | |
Terms will be checked with first, and if accepted, then checked with second. | |
ExpandDeciderAnd (const ExpandDecider *first_, const ExpandDecider *second_) | |
Compatibility method. | |
virtual bool | operator() (const std::string &term) const |
Do we want this term in the ESet? |
ExpandDecider subclass which rejects terms using two ExpandDeciders.
Terms are only accepted if they are accepted by both of the specified ExpandDecider objects.
Xapian::ExpandDeciderAnd::ExpandDeciderAnd | ( | const ExpandDecider & | first_, |
const ExpandDecider & | second_ | ||
) | [inline] |
Terms will be checked with first, and if accepted, then checked with second.
first_ | First ExpandDecider object to test with. |
second_ | ExpandDecider object to test with if first_ accepts. |
Xapian::ExpandDeciderAnd::ExpandDeciderAnd | ( | const ExpandDecider * | first_, |
const ExpandDecider * | second_ | ||
) | [inline] |
Compatibility method.
first_ | First ExpandDecider object to test with. |
second_ | ExpandDecider object to test with if first_ accepts. |
virtual bool Xapian::ExpandDeciderAnd::operator() | ( | const std::string & | term | ) | const [virtual] |
Do we want this term in the ESet?
term | The term to test. |
Implements Xapian::ExpandDecider.