The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lingua::Stem::IO - Ido stemmer

VERSION

This document describes Lingua::Stem::Patch::IO v0.06.

SYNOPSIS

    use Lingua::Stem::Patch::IO qw( stem_io );

    $stem = stem_io($word);

    # alternate syntax
    $stem = Lingua::Stem::Patch::IO::stem($word);

DESCRIPTION

Light and aggressive stemmers for the universal language Ido. This is a new project under active development and the current stemming algorithm is likely to change.

This module provides the stem and stem_io functions for the light stemmer, which are synonymous and can optionally be exported, plus stem_aggressive and stem_io_aggressive functions for the aggressive stemmer. They accept a character string for a word and return a character string for its stem.

SEE ALSO

Lingua::Stem::Patch provides a stemming object with access to all of the Patch stemmers including this one. It has additional features like stemming lists of words.

Lingua::Stem::Any provides a unified interface to any stemmer on CPAN, including this one, as well as additional features like normalization, casefolding, and in-place stemming.

AUTHOR

Nick Patch <patch@cpan.org>

COPYRIGHT AND LICENSE

© 2014–2015 Nick Patch

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.