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

NAME

Search::InvertedIndex::Result - A list of result entries from a inverted index search.

SYNOPSIS

DESCRIPTION

Contains zero or more result entries from a search. Provides access methods to information in/from/about the entries.

Public API

Initialization

new($parm_ref);
number_of_index_entries;

Returns the number of index entries in the result.

entry($parm_ref);

In an array context, returns the index, data and ranking for the requested entry.

In a scalar context returns only the index.

Examples:

        my $index = $result->entry({ -number => 10 };

        my ($index,$data,$ranking) = $result->entry({ -number => 10 });

COPYRIGHT

Copyright 1999-2020, Jerilyn Franz and FreeRun Technologies, Inc. (<URL:http://www.freeruntech.com/>). All Rights Reserved.

AUTHOR

Jerilyn Franz

TODO

Everything.