ImmutableSortedSet.Create メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Create<T>() |
空の変更できない並べ替えられたセットを作成します。 |
Create<T>(IComparer<T>) |
指定された比較子を使用する、空の変更できない並べ替えられたセットを作成します。 |
Create<T>(ReadOnlySpan<T>) |
指定した項目の配列を含む、新しい変更できない並べ替えられたセットを作成します。 |
Create<T>(T) |
指定した項目を含む、新しい変更できない並べ替えられたセットを作成します。 |
Create<T>(T[]) |
指定した項目の配列を含む、新しい変更できない並べ替えられたセットを作成します。 |
Create<T>(IComparer<T>, ReadOnlySpan<T>) |
指定した項目で事前に入力された新しい変更できないコレクションを作成します。 |
Create<T>(IComparer<T>, T) |
指定された項目を含み、指定された比較子を使用する、新しい変更できない並べ替えられたセットを作成します。 |
Create<T>(IComparer<T>, T[]) |
指定された項目の配列を含み、指定された比較子を使用する、新しい変更できない並べ替えられたセットを作成します。 |
Create<T>()
空の変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create();
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> ();
static member Create : unit -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) () As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセットに格納する項目の型。
戻り値
空の変更できない並べ替えられたセット。
適用対象
Create<T>(IComparer<T>)
指定された比較子を使用する、空の変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(System::Collections::Generic::IComparer<T> ^ comparer);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T> comparer);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T>? comparer);
static member Create : System.Collections.Generic.IComparer<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (comparer As IComparer(Of T)) As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセット内の項目の型。
パラメーター
- comparer
- IComparer<T>
セット内の項目を比較する場合に使用する実装。
戻り値
空の変更できないセット。
適用対象
Create<T>(ReadOnlySpan<T>)
指定した項目の配列を含む、新しい変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (ReadOnlySpan<T> items);
static member Create : ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (items As ReadOnlySpan(Of T)) As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセット内の項目の型。
パラメーター
- items
- ReadOnlySpan<T>
セットの事前設定に使用する項目を含むスパン。
戻り値
指定した項目を含む、新しい変更できないセット。
適用対象
Create<T>(T)
指定した項目を含む、新しい変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(T item);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (T item);
static member Create : 'T -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (item As T) As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセット内の項目の型。
パラメーター
- item
- T
セットに事前に設定する項目。
戻り値
指定した項目を含む、新しい変更できないセット。
適用対象
Create<T>(T[])
指定した項目の配列を含む、新しい変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(... cli::array <T> ^ items);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (params T[] items);
static member Create : 'T[] -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (ParamArray items As T()) As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセット内の項目の型。
パラメーター
- items
- T[]
セットに事前に設定する項目を格納している配列。
戻り値
指定した項目を含む、新しい変更できないセット。
適用対象
Create<T>(IComparer<T>, ReadOnlySpan<T>)
指定した項目で事前に入力された新しい変更できないコレクションを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(System::Collections::Generic::IComparer<T> ^ comparer, ReadOnlySpan<T> items);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T>? comparer, ReadOnlySpan<T> items);
static member Create : System.Collections.Generic.IComparer<'T> * ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (comparer As IComparer(Of T), items As ReadOnlySpan(Of T)) As ImmutableSortedSet(Of T)
型パラメーター
- T
コレクションによって格納される項目の型。
パラメーター
- comparer
- IComparer<T>
比較子。
- items
- ReadOnlySpan<T>
事前入力する項目。
戻り値
新しい変更できないコレクション。
適用対象
Create<T>(IComparer<T>, T)
指定された項目を含み、指定された比較子を使用する、新しい変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(System::Collections::Generic::IComparer<T> ^ comparer, T item);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T> comparer, T item);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T>? comparer, T item);
static member Create : System.Collections.Generic.IComparer<'T> * 'T -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (comparer As IComparer(Of T), item As T) As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセットに格納されている項目の型。
パラメーター
- comparer
- IComparer<T>
セット内の項目を比較する場合に使用する実装。
- item
- T
セットに事前に設定する項目。
戻り値
指定した項目を含む、新しい変更できないセット。
適用対象
Create<T>(IComparer<T>, T[])
指定された項目の配列を含み、指定された比較子を使用する、新しい変更できない並べ替えられたセットを作成します。
public:
generic <typename T>
static System::Collections::Immutable::ImmutableSortedSet<T> ^ Create(System::Collections::Generic::IComparer<T> ^ comparer, ... cli::array <T> ^ items);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T> comparer, params T[] items);
public static System.Collections.Immutable.ImmutableSortedSet<T> Create<T> (System.Collections.Generic.IComparer<T>? comparer, params T[] items);
static member Create : System.Collections.Generic.IComparer<'T> * 'T[] -> System.Collections.Immutable.ImmutableSortedSet<'T>
Public Function Create(Of T) (comparer As IComparer(Of T), ParamArray items As T()) As ImmutableSortedSet(Of T)
型パラメーター
- T
変更できないセット内の項目の型。
パラメーター
- comparer
- IComparer<T>
セット内の項目を比較する場合に使用する実装。
- items
- T[]
セットに事前に設定する項目を格納している配列。
戻り値
指定した項目を含む、新しい変更できないセット。
適用対象
.NET