[API Proposal]: Add allows ref struct
to TComparer
in BinarySearch
#103270
Labels
api-ready-for-review
API is ready for review, it is NOT ready for implementation
area-System.Memory
blocking
Marks issues that we want to fast track in order to unblock other important work
in-pr
There is an active PR which will close this issue when it is merged
Milestone
EDITED on 6/17/2024 by @stephentoub to add a few more overloads
Background and motivation
There are a number of instances where a user might like to perform a binary search using a ref struct. For example, a table of strings could be searched with a
ReadOnlySpan<char>
, potentially avoiding additional string allocations.API Proposal
API Usage
Alternative Designs
There's another overload for
BinarySearch
that takes two values. We could mark theT
in that one asallows ref struct
and rely on the comparer to handle it. That seems like a fine addition, but not a replacement. If there's already a dedicated "key" struct being used for lookup, this would mean creating a new comparer for no reason.Risks
These are static methods, so none. The only actual changes required to implement this API change is adding
allows ref struct
in a few more places.The text was updated successfully, but these errors were encountered: