IVector<TValue>.rbegin Method

Definition

Designates the beginning of the reversed controlled sequence.

public:
 void ^ rbegin(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ % unnamedParam1);
public void rbegin (ref Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> unnamedParam1);
abstract member rbegin : ReverseRandomAccessIterator -> unit
Public Function rbegin (ByRef unnamedParam1 As ReverseRandomAccessIterator(Of TValue)) As Void

Parameters

unnamedParam1
ReverseRandomAccessIterator<TValue>

A reverse iterator that designates the last element of the controlled sequence, or just beyond the beginning of an empty sequence. Hence, it designates the beginning of the reverse sequence. You use it to obtain an iterator that designates the current beginning of the controlled sequence seen in reverse order, but its status can change if the length of the controlled sequence changes.

Remarks

For more information, see vector::rbegin (STL/CLR).

Applies to