Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[API Proposal]: Add allows ref struct to TComparer in BinarySearch #103270

Closed
agocke opened this issue Jun 11, 2024 · 1 comment · Fixed by #103604
Closed

[API Proposal]: Add allows ref struct to TComparer in BinarySearch #103270

agocke opened this issue Jun 11, 2024 · 1 comment · Fixed by #103604
Assignees
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

Comments

@agocke
Copy link
Member

agocke commented Jun 11, 2024

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

namespace System;

public static partial class MemoryExtensions
{
    public static int BinarySearch<T, TComparable>(this Span<T> span, TComparable comparable)
        where TComparable : IComparable<T>
+       , allows ref struct
    public static int BinarySearch<T, TComparer>(this ReadOnlySpan<T> span, T value, TComparer comparer)
+       where T : allows ref struct
        where TComparer: IComparer<T>
+       , allows ref struct
    public static int BinarySearch<T, TComparable>(this Span<T> span, TComparable comparable)
        where TComparable : IComparable<T>
+       , allows ref struct
    public static int BinarySearch<T, TComparer>(this ReadOnlySpan<T> span, T value, TComparer comparer)
+       where T : allows ref struct
        where TComparer: IComparer<T>
+       , allows ref struct
}

API Usage

var a = new string[] {
   "a",
   "b",
   "c",
};
// Sort
...

int index = a.BinarySearch(new RosComparable("b"));

ref struct RosComparable(ReadOnlySpan<char> span) : IComparable<string>
{
    private readonly ReadOnlySpan<char> _span;
    public int CompareTo(string s) => _span.SequenceCompareTo(s.AsSpan());
}

Alternative Designs

There's another overload for BinarySearch that takes two values. We could mark the T in that one as allows 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.

@agocke agocke added the api-suggestion Early API idea and discussion, it is NOT ready for implementation label Jun 11, 2024
Copy link
Contributor

Tagging subscribers to this area: @dotnet/area-system-memory
See info in area-owners.md if you want to be subscribed.

@stephentoub stephentoub added api-ready-for-review API is ready for review, it is NOT ready for implementation and removed api-suggestion Early API idea and discussion, it is NOT ready for implementation labels Jun 11, 2024
@stephentoub stephentoub added this to the 9.0.0 milestone Jun 11, 2024
@stephentoub stephentoub self-assigned this Jun 11, 2024
@stephentoub stephentoub added the blocking Marks issues that we want to fast track in order to unblock other important work label Jun 17, 2024
@stephentoub stephentoub added the in-pr There is an active PR which will close this issue when it is merged label Jun 17, 2024
@github-actions github-actions bot locked and limited conversation to collaborators Jul 19, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
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
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants