Iterator::Locate - read "locate" database with Iterator


File-Locate-Iterator documentation  | view source Contained in the File-Locate-Iterator distribution.

Index


NAME

Top

Iterator::Locate -- read "locate" database with Iterator

SYNOPSIS

Top

 use Iterator::Locate;
 my $it = Iterator::Locate->new;
 until ($it->is_exhausted) {
   my $entry = $it->value;
   print $entry,"\n";
 }

CLASS HIERARCHY

Top

Iterator::Locate is a subclass of Iterator,

    Iterator
      Iterator::Locate

DESCRIPTION

Top

An Iterator::Locate object reads a "locate" database file in iterator style. It's a front-end to the File::Locate::Iterator module, allowing the various Iterator module features to be used for filtering or crunching entries from a locate database.

See examples/iterator-pm.pl in the File-Locate-Iterator sources for a simple complete program.

FUNCTIONS

Top

Creation

$it = Iterator::Locate->new (key=>value,...)

Create and return a new Iterator::Locate object. Optional key/value arguments are passed to File::Locate::Iterator->new.

SEE ALSO

Top

Iterator, File::Locate::Iterator

HOME PAGE

Top

http://user42.tuxfamily.org/file-locate-iterator/index.html

COPYRIGHT

Top


File-Locate-Iterator documentation  | view source Contained in the File-Locate-Iterator distribution.