Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.x] Allow shift() and pop() to take multiple items from a collection #38093

Merged
merged 5 commits into from
Jul 21, 2021
Merged

[8.x] Allow shift() and pop() to take multiple items from a collection #38093

merged 5 commits into from
Jul 21, 2021

Conversation

edgrosvenor
Copy link
Contributor

@edgrosvenor edgrosvenor commented Jul 21, 2021

This pull request adds an optional numeric argument, defaulting to 1, to the pop() and shift() methods of the Collection class. This allows the user to shift or pop x items from a collection in one pass. This PR was inspired by the following situation.

I have a collection of 98 records that I need to divide as evenly as possible into 4 groups. So the group sizes would be 25, 25, 24, and 24. In order to do this, I have to jump through some hoops using take() and skip()...

$groupSizes = [25, 25, 24, 24];
$skip = 0;

foreach ($groupSizes as $size) {
    $group = $collection->skip($skip)->take($size);
    $skip += $size;
   // Do something with the group
}

With this new argument, I have the option of simply doing

$groupSizes = [25, 25, 24, 24];


foreach ($groupSizes as $size) {
    $group = $collection->shift($size);
    // Do something with the group
}

Because the default value for each of the methods is 1, they continue to work exactly as they did before.

Alternatives

There are a couple other ways this problem could be solved. The first would be to create new methods for each. Something like popMany() and shiftMany(). Another would be to add an optional second parameter to take() that would remove the items returned from the original collection.

@GrahamCampbell GrahamCampbell changed the title Allow shift() and pop() to take multiple items from a collection [8.x] Allow shift() and pop() to take multiple items from a collection Jul 21, 2021
src/Illuminate/Collections/Collection.php Outdated Show resolved Hide resolved
src/Illuminate/Collections/Collection.php Outdated Show resolved Hide resolved
@taylorotwell taylorotwell merged commit 5e794b8 into laravel:8.x Jul 21, 2021
@edgrosvenor
Copy link
Contributor Author

I'll send a PR to update the docs later today. Thanks Taylor!

$results = [];

foreach (range(1, $count) as $item) {
array_push($results, array_shift($this->items));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

array_shift is an expensive operation (as it needs to re-key all items in the array). You don't really want to do that in a loop 😢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants