iterator-functions
iterator-functions copied to clipboard
A package that provides `array_*` like functions for iterators.
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...
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...