We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Very cool project, we like it a lot.
Only thing that we're kind of missing are the sort methods
public void Sort(Comparison<T> comparison); public void Sort(int index, int count, IComparer<T> comparer); public void Sort(); public void Sort(IComparer<T> comparer);
I think it would be as simple as
public void Sort() => Sort(0, Count, null); public void Sort(IComparer<T> comparer) => Sort(0, Count, comparer); public void Sort(int index, int count, IComparer<T> comparer) => Array.Sort<T>(_items, index, count, comparer); public void Sort(Comparison<T> comparison) => Array.Sort<T>(_items, 0, Count, Comparer<T>.Create(comparison));
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Very cool project, we like it a lot.
Only thing that we're kind of missing are the sort methods
I think it would be as simple as
The text was updated successfully, but these errors were encountered: