ImmutableSortedSet.ToImmutableSortedSet Method
Definition
Overloads
ToImmutableSortedSet<TSource>(IEnumerable<TSource>) |
Enumerates a sequence and produces an immutable sorted set of its contents. |
ToImmutableSortedSet<TSource>(ImmutableSortedSet<TSource>.Builder) |
Creates an immutable sorted set from the current contents of the builder's set. |
ToImmutableSortedSet<TSource>(IEnumerable<TSource>, IComparer<TSource>) |
Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer. |
ToImmutableSortedSet<TSource>(IEnumerable<TSource>)
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
- source
- IEnumerable<TSource>
The sequence to enumerate.
Returns
- ImmutableSortedSet<TSource>
An immutable sorted set that contains the items in the specified sequence.
Applies to
ToImmutableSortedSet<TSource>(ImmutableSortedSet<TSource>.Builder)
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
- builder
- ImmutableSortedSet<TSource>.Builder
The builder to create the immutable sorted set from.
Returns
- ImmutableSortedSet<TSource>
An immutable sorted set that contains the current contents in the builder's set.
Applies to
ToImmutableSortedSet<TSource>(IEnumerable<TSource>, IComparer<TSource>)
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
- source
- IEnumerable<TSource>
The sequence to enumerate.
- comparer
- IComparer<TSource>
The comparer to use for initializing and adding members to the sorted set.
Returns
- ImmutableSortedSet<TSource>
An immutable sorted set that contains the items in the specified sequence.