package Array::Iterator::Reusable;
use strict;
use warnings;
our $VERSION = '0.01';
use Array::Iterator;
our @ISA = qw(Array::Iterator);
sub reset {
my ($self) = @_;
$self->_current_index = 0;
}
1;
__END__
=head1 NAME
Array::Iterator::Reusable - A subclass of Array::Iterator to allow reuse of iterators
=head1 SYNOPSIS
use Array::Iterator::Reusable;
# create an iterator with an array
my $i = Array::Iterator::Reusable->new(1 .. 100);
# do something with the iterator
my @accumulation;
push @accumulation => { item => $iterator->next() } while $iterator->hasNext();
# now reset the iterator so we can do it again
$iterator->reset();
=head1 DESCRIPTION
Sometimes you don't want to have to throw out your iterator each time you have exhausted it. This class adds the C<reset> method to allow reuse of an iterator. This is a very simple addition to the Array::Iterator class of a single method.
=head1 METHODS
This is a subclass of Array::Iterator, only those methods that have been added are documented here, refer to the Array::Iterator documentation for more information.
=over 4
=item B<reset>
This resets the interal counter of the iterator back to the start of the array.
=back
=head1 BUGS
None that I am aware of, if you find a bug, let me know, and I will be sure to fix it.
=head1 CODE COVERAGE
See the B<CODE COVERAGE> section of the B<Array::Iterator> documentation for information about the code coverage of this module's test suite.
=head1 SEE ALSO
This is a subclass of B<Array::Iterator>, please refer to it for more documenation.
=head1 AUTHOR
stevan little, E<lt>stevan@iinteractive.comE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright 2004 by Infinity Interactive, Inc.
L<http://www.iinteractive.com>
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
syntax highlighted by Code2HTML, v. 0.9.1