| Search-Xapian documentation | Contained in the Search-Xapian distribution. |
Search::Xapian::Stem - Snowball stemmer
my $stemmer = Search::Xapian::Stem->new('norwegian');
my $stemmed_foo = $stemmer->stem_word($foo);
Constructor. Takes the language to stem as as parameter.
Returns the stemmed form of the given word.
| Search-Xapian documentation | Contained in the Search-Xapian distribution. |
package Search::Xapian::Stem; use 5.006; use strict; use warnings; # In a new thread, copy objects of this class to unblessed, undef values. sub CLONE_SKIP { 1 } 1; __END__