System.Collections.Immutable.ImmutableSortedSet
namespace System.Collections.Immutable
{
public static class ImmutableSortedSet
{
public static ImmutableSortedSet<T> Create<T>();
public static ImmutableSortedSet<T> Create<T>(IComparer<T> comparer);
public static ImmutableSortedSet<T> Create<T>(T item);
public static ImmutableSortedSet<T> Create<T>(IComparer<T> comparer, T item);
public static ImmutableSortedSet<T> CreateRange<T>(IEnumerable<T> items);
public static ImmutableSortedSet<T> CreateRange<T>(IComparer<T> comparer, IEnumerable<T> items);
public static ImmutableSortedSet<T> Create<T>(params T[] items);
public static ImmutableSortedSet<T> Create<T>(IComparer<T> comparer, params T[] items);
public static ImmutableSortedSet<T>.Builder CreateBuilder<T>();
public static ImmutableSortedSet<T>.Builder CreateBuilder<T>(IComparer<T> comparer);
public static ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this IEnumerable<TSource> source, IComparer<TSource> comparer);
public static ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this IEnumerable<TSource> source);
}
}