Conversation
…s with tests Agent-Logs-Url: https://github.com/Tyrrrz/PowerKit/sessions/7797dd52-291e-4808-85f2-c21b3fc42fec Co-authored-by: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
Tyrrrz
April 17, 2026 06:41
View session
Tyrrrz
approved these changes
Apr 17, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## prime #39 +/- ##
==========================================
+ Coverage 94.47% 94.54% +0.07%
==========================================
Files 76 76
Lines 1574 1596 +22
Branches 131 133 +2
==========================================
+ Hits 1487 1509 +22
Misses 65 65
Partials 22 22 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR extends PowerKit.Extensions.CollectionExtensions with ICollection<T> helpers to add or remove multiple items in one call, aligning the library’s collection utility surface with the referenced CliFx-style API.
Changes:
- Add
ICollection<T>.AddRange(IEnumerable<T>)extension method. - Add
ICollection<T>.RemoveRange(IEnumerable<T>)extension method. - Add unit tests for
AddRangeandRemoveRange.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| PowerKit/Extensions/CollectionExtensions.cs | Adds AddRange/RemoveRange extensions on ICollection<T> alongside existing collection helpers. |
| PowerKit.Tests/CollectionExtensionsTests.cs | Adds happy-path tests covering the new AddRange/RemoveRange methods. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Agent-Logs-Url: https://github.com/Tyrrrz/PowerKit/sessions/2aa7bec2-5ec3-4f5e-84bd-798066c277d8 Co-authored-by: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com>
This was referenced May 1, 2026
This file contains hidden or 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
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.
Extends
CollectionExtensionswith two new methods onICollection<T>—AddRangeandRemoveRange— mirroring the CliFx reference implementation.Changes
CollectionExtensions— adds two methods to the existingextension<T>(ICollection<T>)block:AddRange(IEnumerable<T> items)— iterates and callsAddfor each elementRemoveRange(IEnumerable<T> items)— iterates and callsRemovefor each elementCollectionExtensionsTests— addsAddRange_TestandRemoveRange_TestUsage