joelharkes/data-structures

Data structures for PHP

1.0.0 2022-08-28 14:07 UTC

This package is auto-updated.

Last update: 2024-04-04 22:30:09 UTC


README

Data structures for PHP written in PHP.

Iterator chaining

All iterators have been extended to chaining and delayed execution.

$set = new \DataStructures\Set\Set();
$set->getIterator()
    ->filter(fn($value) => $value === 1)
    ->map(fn($value) => $value === 1)
    ->count(); // or all(), any().