buttress/collecterator

A collection class powered by generators

2.0.0 2023-06-11 16:30 UTC

This package is auto-updated.

Last update: 2024-04-11 18:15:57 UTC


README

Latest Version on Packagist Software License Build Status Total Downloads

This library is a fully featured \Generator based Collection implementation. The goal is to provide a memory efficient fast collection implementation that makes it possible to use familiar collection methods to work with infinite or very large streams.

Our tests were largely copied from tightenco/collect with many modifications added to support the deferred processing you get with Generators.

For basic usage, see the AllMethods.php example

Install

Via Composer

$ composer require buttress/collecterator

Usage

$collection = GeneratorCollection::make([1,2,3]);
$collection->filter(function(int $value) {
    return $value % 2;
});

$array = $collection->all();

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email korvinszanto@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.