Update for 1.4.20
[xapian.git] / xapian-bindings / perl / Xapian / Stem.pm
blobf51f13c477bfc0f626664bb653e2289da497bc5e
1 package Xapian::Stem;
3 =head1 NAME
5 Xapian::Stem - Snowball stemmer
7 =head1 SYNOPSIS
9 my $stemmer = Xapian::Stem->new('norwegian');
10 my $stemmed_foo = $stemmer->stem_word($foo);
12 =head1 DESCRIPTION
14 =head1 METHODS
16 =over 4
18 =item new <language>
20 Constructor. Takes the language to stem as a parameter.
22 =item stem_word <word>
24 Returns the stemmed form of the given word.
26 =back
28 =head1 SEE ALSO
30 L<Xapian>,
31 L<Xapian::QueryParser>,
32 L<Xapian::TermGenerator>
34 =cut