Simple implementation of Stopper class - this will suit most users.
More...
|
| SimpleStopper () |
| Default constructor.
|
|
template<class Iterator > |
| SimpleStopper (Iterator begin, Iterator end) |
| Initialise from a pair of iterators. More...
|
|
void | add (const std::string &word) |
| Add a single stop word.
|
|
virtual bool | operator() (const std::string &term) const |
| Is term a stop-word? More...
|
|
virtual std::string | get_description () const |
| Return a string describing this object.
|
|
| Stopper () |
| Default constructor.
|
|
virtual | ~Stopper () |
| Class has virtual methods, so provide a virtual destructor.
|
|
Stopper * | release () |
|
const Stopper * | release () const |
|
Simple implementation of Stopper class - this will suit most users.
template<class Iterator >
Xapian::SimpleStopper::SimpleStopper |
( |
Iterator |
begin, |
|
|
Iterator |
end |
|
) |
| |
|
inline |
Initialise from a pair of iterators.
Xapian includes stop list files for many languages. You can initialise from a file like that:
ifstream inFile ("stopwords/english/stop.txt");
Xapian::SimplerStopper stopper(istream_iterator<string>(inFile), istream_iterator<string>());
virtual bool Xapian::SimpleStopper::operator() |
( |
const std::string & |
term | ) |
const |
|
inlinevirtual |
The documentation for this class was generated from the following file: