iter8 icon indicating copy to clipboard operation
iter8 copied to clipboard

PHP library for iterable/generator transformations and operations

Results 1 iter8 issues
Sort by recently updated
recently updated
newest added

Neat little package. After a skim of the examples, I immediately thought that currying would be neat. Like: BEFORE: ```php $iter = Iter::pipe(Gen::from(PEOPLE), [ Pipe::pluck('age'), Pipe::reduce('max'), Pipe::switch(function (int $maxAge) {...