ImmutableSortedSet.CreateBuilder メソッド

定義

オーバーロード

名前 説明
CreateBuilder<T>()

変更できない並べ替えられたセットを構築するために使用できるコレクションを返します。

CreateBuilder<T>(IComparer<T>)

変更できない並べ替えられたセットを構築するために使用できるコレクションを返します。

CreateBuilder<T>()

変更できない並べ替えられたセットを構築するために使用できるコレクションを返します。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableSortedSet<T>::Builder ^ CreateBuilder();
public static System.Collections.Immutable.ImmutableSortedSet<T>.Builder CreateBuilder<T>();
static member CreateBuilder : unit -> System.Collections.Immutable.ImmutableSortedSet<'T>.Builder
Public Function CreateBuilder(Of T) () As ImmutableSortedSet(Of T).Builder

型パラメーター

T

コレクションによって格納される項目の種類。

返品

変更できないコレクション ビルダー。

適用対象

CreateBuilder<T>(IComparer<T>)

変更できない並べ替えられたセットを構築するために使用できるコレクションを返します。

public:
generic <typename T>
 static System::Collections::Immutable::ImmutableSortedSet<T>::Builder ^ CreateBuilder(System::Collections::Generic::IComparer<T> ^ comparer);
public static System.Collections.Immutable.ImmutableSortedSet<T>.Builder CreateBuilder<T>(System.Collections.Generic.IComparer<T> comparer);
static member CreateBuilder : System.Collections.Generic.IComparer<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>.Builder
Public Function CreateBuilder(Of T) (comparer As IComparer(Of T)) As ImmutableSortedSet(Of T).Builder

型パラメーター

T

コレクションによって格納される項目の種類。

パラメーター

comparer
IComparer<T>

セット内の項目を等しいかどうかを比較するために使用される比較子。

返品

変更できないコレクション。

適用対象