ImmutableList<T>.Builder.Reverse メソッド

定義

オーバーロード

Reverse()

変更できないリスト全体の要素の順序を反転させます。

Reverse(Int32, Int32)

変更できないリストの指定した範囲内の要素の順序を反転させます。

Reverse()

ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs

変更できないリスト全体の要素の順序を反転させます。

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

適用対象

Reverse(Int32, Int32)

ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs

変更できないリストの指定した範囲内の要素の順序を反転させます。

public:
 void Reverse(int index, int count);
public void Reverse (int index, int count);
member this.Reverse : int * int -> unit
Public Sub Reverse (index As Integer, count As Integer)

パラメーター

index
Int32

反転させる範囲の開始位置を示す 0 から始まるインデックス。

count
Int32

反転させる範囲内にある要素の数。

適用対象