Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

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