Class ComparerEquatableArray
Provides methods for creating an ComparerEquatableArray<T>.
Namespace: Singulink.Collections
Assembly: Singulink.Collections.dll
Syntax
public static class ComparerEquatableArray
Methods
| Name | Description |
|---|---|
| Create<T>(IEnumerable<T>) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the default comparer. |
| Create<T>(IEqualityComparer<T>?, IEnumerable<T>) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the specified comparer. |
| Create<T>(IEqualityComparer<T>?, ImmutableArray<T>) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the specified comparer. |
| Create<T>(IEqualityComparer<T>?, params ReadOnlySpan<T>) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the specified comparer. |
| Create<T>(IEqualityComparer<T>?, params T[]) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the specified comparer. |
| Create<T>(ImmutableArray<T>) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the default comparer. |
| Create<T>(params ReadOnlySpan<T>) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the default comparer. |
| Create<T>(params T[]) | Returns an instance of the ComparerEquatableArray<T> class from the given collection with the default comparer. |