logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Attean::IteratorSequence - Iterator implementation backed by zero or more sub-iterators

Author

       Gregory Todd Williams  "<gwilliams@cpan.org>"

Bugs

       Please  report  any   bugs   or   feature   requests   to   through   the   GitHub   web   interface   at
       <https://github.com/kasei/attean/issues>.

Description

       The Attean::IteratorSequence class represents a typed iterator that is backed by zero or more sub-
       iterators. When iterated over, it will return all the elements of all of its sub-iterators, in order,
       before returning undef.  It conforms to the Attean::API::Iterator role.

       The Attean::IteratorSequence constructor requires two named arguments:

       iterators
           An array reference containing zero or more Attean::API::Iterator objects.

       item_type
           A string representing the type of the items that will be returned from the iterator.

Methods

       "next"
           Returns the iterator's next item, or undef upon reaching the end of iteration.

       push( $iterator )
           Adds the new $iterator to the end of the array of sub-iterators.

           After  this  call,  $iterator  will  be  owned by the IteratorSequence, so making any method calls on
           $iterator after this point may produce unexpected results.

Name

       Attean::IteratorSequence - Iterator implementation backed by zero or more sub-iterators

See Also

Synopsis

         use v5.14;
         use Attean;
         my $iter = Attean::IteratorSequence->new(iterators => [$iter1, $iter2]);

Version

       This document describes Attean::IteratorSequence version 0.035

See Also