ImmutableList<T>.Reverse メソッド

定義

オーバーロード

Reverse()

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

Reverse(Int32, Int32)

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

Reverse()

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

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

public:
 System::Collections::Immutable::ImmutableList<T> ^ Reverse();
public System.Collections.Immutable.ImmutableList<T> Reverse ();
member this.Reverse : unit -> System.Collections.Immutable.ImmutableList<'T>
Public Function Reverse () As ImmutableList(Of T)

戻り値

逆順のリスト。

適用対象

Reverse(Int32, Int32)

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

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

public:
 System::Collections::Immutable::ImmutableList<T> ^ Reverse(int index, int count);
public System.Collections.Immutable.ImmutableList<T> Reverse (int index, int count);
member this.Reverse : int * int -> System.Collections.Immutable.ImmutableList<'T>
Public Function Reverse (index As Integer, count As Integer) As ImmutableList(Of T)

パラメーター

index
Int32

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

count
Int32

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

戻り値

逆順のリスト。

適用対象