[8.x] Allow shift() and pop() to take multiple items from a collection #38093
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.