iterator-functions icon indicating copy to clipboard operation
iterator-functions copied to clipboard

A package that provides `array_*` like functions for iterators.

Results 3 iterator-functions issues
Sort by recently updated
recently updated
newest added

Todo: - [ ] Check if `ColumnIterator` is actually more performant now.

Nice package! So annoying that PHP doesn't provide this logic in their standard libs. However, even with these functions i still have to type check before calling them: `$iterable instanceof...

enhancement

Unlike stated in the `README` it can be possible to implement `_diff` and `_intersect` functions by repeatedly looping of the provided iterators. Because this is probably not the most performant...

research