<PackageReference Include="Microsoft.Packaging.Tools" Version="1.0.0-preview2-25401-01" />

System.Collections.Immutable.ImmutableSortedSet

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> Create<T>(T[] items)

public static ImmutableSortedSet<T> Create<T>(IComparer<T> comparer, T[] items)

public static Builder<T> CreateBuilder<T>()

public static Builder<T> CreateBuilder<T>(IComparer<T> comparer)

public static ImmutableSortedSet<T> CreateRange<T>(IEnumerable<T> items)

public static ImmutableSortedSet<T> CreateRange<T>(IComparer<T> comparer, IEnumerable<T> items)

public static ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this IEnumerable<TSource> source, IComparer<TSource> comparer)

public static ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this IEnumerable<TSource> source)