-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Remove-all-items O(1) in lazy evaluation
In the special case where a remove operation removes all items like ```xml <Compile Remove="@(Compile)" /> ``` We currently have poor behavior because we match ("everything matches") and then remove items one at a time. Instead, we can just empty out the list. Part of #2314.
- Loading branch information
1 parent
e8240b9
commit 4459ab7
Showing
1 changed file
with
22 additions
and
3 deletions.
There are no files selected for viewing
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