ImmutableSortedSet.ToImmutableSortedSet Method (System.Collections.Immutable) (original) (raw)

Definition

Namespace:

System.Collections.Immutable

Assembly:

System.Collections.Immutable.dll

Package:

System.Collections.Immutable v10.0.0-preview.3.25171.5

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

ToImmutableSortedSet(IEnumerable)

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Enumerates a sequence and produces an immutable sorted set of its contents.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::ImmutableSortedSet<TSource> ^ ToImmutableSortedSet(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this System.Collections.Generic.IEnumerable<TSource> source);
static member ToImmutableSortedSet : seq<'Source> -> System.Collections.Immutable.ImmutableSortedSet<'Source>
<Extension()>
Public Function ToImmutableSortedSet(Of TSource) (source As IEnumerable(Of TSource)) As ImmutableSortedSet(Of TSource)

Type Parameters

TSource

The type of the elements in the sequence.

Parameters

Returns

An immutable sorted set that contains the items in the specified sequence.

Applies to

ToImmutableSortedSet(ImmutableSortedSet.Builder)

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Creates an immutable sorted set from the current contents of the builder's set.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::ImmutableSortedSet<TSource> ^ ToImmutableSortedSet(System::Collections::Immutable::ImmutableSortedSet<TSource>::Builder ^ builder);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this System.Collections.Immutable.ImmutableSortedSet<TSource>.Builder builder);
static member ToImmutableSortedSet : System.Collections.Immutable.ImmutableSortedSet<'Source>.Builder -> System.Collections.Immutable.ImmutableSortedSet<'Source>
<Extension()>
Public Function ToImmutableSortedSet(Of TSource) (builder As ImmutableSortedSet(Of TSource).Builder) As ImmutableSortedSet(Of TSource)

Type Parameters

TSource

The type of the elements in the immutable sorted set.

Parameters

Returns

An immutable sorted set that contains the current contents in the builder's set.

Applies to

ToImmutableSortedSet(IEnumerable, IComparer)

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Source:

ImmutableSortedSet.cs

Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::ImmutableSortedSet<TSource> ^ ToImmutableSortedSet(System::Collections::Generic::IEnumerable<TSource> ^ source, System::Collections::Generic::IComparer<TSource> ^ comparer);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IComparer<TSource> comparer);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IComparer<TSource>? comparer);
static member ToImmutableSortedSet : seq<'Source> * System.Collections.Generic.IComparer<'Source> -> System.Collections.Immutable.ImmutableSortedSet<'Source>
<Extension()>
Public Function ToImmutableSortedSet(Of TSource) (source As IEnumerable(Of TSource), comparer As IComparer(Of TSource)) As ImmutableSortedSet(Of TSource)

Type Parameters

TSource

The type of the elements in the sequence.

Parameters

comparer

IComparer

The comparer to use for initializing and adding members to the sorted set.

Returns

An immutable sorted set that contains the items in the specified sequence.

Applies to