IList<TValue>.rend(ReverseBidirectionalIterator<TValue>) Method

Definition

Designates the end of the reversed controlled sequence.

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

Parameters

unnamedParam1
ReverseBidirectionalIterator<TValue>

A reverse iterator that points just beyond the beginning of the controlled sequence. Hence, it designates the end of the reverse sequence. You use it to obtain an iterator that designates the current end 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 list::rend (STL/CLR).

Applies to