improved-php-iterable icon indicating copy to clipboard operation
improved-php-iterable copied to clipboard

Append and prepend

Open jasny opened this issue 5 years ago • 1 comments

Add methods to append or prepend items to an iterator.

Pipeline::with($items)
  ->append($extraItems);

jasny avatar Jun 26 '20 09:06 jasny

The difficulty is with the keys. If you don't explicitly use values() before toArray(), the items are overwritten instead of appended.

jasny avatar Jun 26 '20 09:06 jasny