ImmutableArray<T>.Builder.Sort メソッド

定義

オーバーロード

Sort()

配列の内容を並べ替えます。

Sort(IComparer<T>)

配列の内容を並べ替えます。

Sort(Comparison<T>)

指定した Comparison<T> を使って、配列全体の要素を並べ替えます。

Sort(Int32, Int32, IComparer<T>)

配列の内容を並べ替えます。

Sort()

ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs

配列の内容を並べ替えます。

public:
 void Sort();
public void Sort ();
member this.Sort : unit -> unit
Public Sub Sort ()

適用対象

Sort(IComparer<T>)

ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs

配列の内容を並べ替えます。

public:
 void Sort(System::Collections::Generic::IComparer<T> ^ comparer);
public void Sort (System.Collections.Generic.IComparer<T> comparer);
public void Sort (System.Collections.Generic.IComparer<T>? comparer);
member this.Sort : System.Collections.Generic.IComparer<'T> -> unit
Public Sub Sort (comparer As IComparer(Of T))

パラメーター

comparer
IComparer<T>

並べ替えに使用する比較子。 比較子が null の場合、配列内の要素の型の既定の比較子が使用されます。

適用対象

Sort(Comparison<T>)

ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs

指定した Comparison<T> を使って、配列全体の要素を並べ替えます。

public:
 void Sort(Comparison<T> ^ comparison);
public void Sort (Comparison<T> comparison);
member this.Sort : Comparison<'T> -> unit
Public Sub Sort (comparison As Comparison(Of T))

パラメーター

comparison
Comparison<T>

要素を比較する場合に使用する Comparison<T>

例外

comparison が null です。

適用対象

Sort(Int32, Int32, IComparer<T>)

ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs
ソース:
ImmutableArray_1.Builder.cs

配列の内容を並べ替えます。

public:
 void Sort(int index, int count, System::Collections::Generic::IComparer<T> ^ comparer);
public void Sort (int index, int count, System.Collections.Generic.IComparer<T> comparer);
public void Sort (int index, int count, System.Collections.Generic.IComparer<T>? comparer);
member this.Sort : int * int * System.Collections.Generic.IComparer<'T> -> unit
Public Sub Sort (index As Integer, count As Integer, comparer As IComparer(Of T))

パラメーター

index
Int32

並べ替えの開始インデックス。

count
Int32

並べ替えに含める要素の数。

comparer
IComparer<T>

並べ替えに使用する比較子。 比較子が null の場合、配列内の要素の型の既定の比較子が使用されます。

適用対象