NAME
Data::Eacherator - simple each-list iterator generator for hashes and
arrays
SYNOPSIS
use Data::Eacherator qw(eacherator);
my $iter = eacherator($hash_or_array);
while (my ($k, $v) = $iter->()) {
# ...
}
PREREQUISITES
None.
AUTHOR
Michael Stillwell <mjs@beebo.org>
COPYRIGHT
Copyright (c) 2005 Michael Stillwell. All rights reserved. This
program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.