IHash<TKey,TValue>.rend Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. Its status can change if the length of the controlled sequence changes.
Remarks
For more information, see hash_map::rend (STL/CLR), hash_multimap::rend (STL/CLR), hash_set::rend (STL/CLR), and hash_multiset::rend (STL/CLR).