ImmutableList<T>.Builder.Reverse Method

Definition

Overloads

Reverse()

Reverses the order of the elements in the entire immutable list.

Reverse(Int32, Int32)

Reverses the order of the elements in the specified range of the immutable list.

Reverse()

Source:
ImmutableList_1.Builder.cs
Source:
ImmutableList_1.Builder.cs
Source:
ImmutableList_1.Builder.cs

Reverses the order of the elements in the entire immutable list.

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

Applies to

Reverse(Int32, Int32)

Source:
ImmutableList_1.Builder.cs
Source:
ImmutableList_1.Builder.cs
Source:
ImmutableList_1.Builder.cs

Reverses the order of the elements in the specified range of the immutable list.

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)

Parameters

index
Int32

The zero-based starting index of the range to reverse.

count
Int32

The number of elements in the range to reverse.

Applies to