logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Version 0.135

Description

       Sometimes you don't want to have to throw out your iterator each time you have exhausted it. This class
       adds the "reset" method to allow reuse of an iterator. This is a very simple addition to the
       Array::Iterator class of a single method.

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.

       reset
           This resets the internal counter of the iterator back to the start of the array.

Original Author

       stevan little, <stevan@iinteractive.com>

See Also

       This is a subclass of Array::Iterator, please refer to it for more documentation.

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->has_next();

         # now reset the iterator so we can do it again
         $iterator->reset();

Version

       Version 0.135

See Also