You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
SortedSet's BreadthFirstTreeWalk (which is used by several members, such as RemoveWhere) is currently using a List as a queue, doing a RemoveAt(0) to dequeue, which will incur the cost of shifting all elements down. Using a Queue is both cleaner and better performing.
0 commit comments