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

Data::Stream::Bulk::Array - Data::Stream::Bulk wrapper for simple arrays.

Attributes

       array
           The array reference to wrap.

Author

       Yuval Kogman <nothingmuch@woobling.org>

Description

       This implementation of the Data::Stream::Bulk api wraps an array.

       The use case is to keep the consumer of the data set implementation agnostic so that it can deal with
       larger data sets if they are encountered, but still retain most of the simplicity when the current data
       set easily fits in memory.

Methods

       next
           Returns the array reference on the first invocation, and nothing thereafter.

       is_done
           Returns true if "next" has been called.

       list_cat
           Squishes adjacent arrays into a new array.

       filter $filter
           Immediately applies $filter to the internal array and returns $self.

       loaded
           Returns true

Name

       Data::Stream::Bulk::Array - Data::Stream::Bulk wrapper for simple arrays.

Synopsis

               return Data::Stream::Bulk::Array->new(
                       array => \@results,
               );

Version

       version 0.11

See Also