Lucy::Analysis::Inversion - A collection of Tokens.
my $result = Lucy::Analysis::Inversion->new; while (my $token = $inversion->next) { $result->append($token); }
An Inversion is a collection of Token objects which you can add to, then iterate over.
my $inversion = Lucy::Analysis::Inversion->new( $seed, # optional );
Create a new Inversion.
$inversion->append($token);
Tack a token onto the end of the Inversion.
my $token = $inversion->next();
Return the next token in the Inversion until out of tokens.
$inversion->reset();
Reset the Inversion’s iterator, so that the next call to next() returns the first Token in the inversion.
Lucy::Analysis::Inversion isa Clownfish::Obj.
Copyright © 2010-2015 The Apache Software Foundation, Licensed under the
Apache License, Version 2.0.
Apache Lucy, Lucy, Apache, the Apache feather logo, and the Apache Lucy project logo are trademarks of The
Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their
respective owners.