-
Notifications
You must be signed in to change notification settings - Fork 11.1k
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
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
FrontEndCoffee
suggested changes
Jul 21, 2021
FrontEndCoffee
approved these changes
Jul 21, 2021
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)); |
There was a problem hiding this comment.
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 😢
This was referenced Aug 7, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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()...
With this new argument, I have the option of simply doing
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.