This documentation is archived and is not being maintained.
ConstReverseBidirectionalIterator<TValue> Class
Visual Studio 2010
Defines an iterator that accesses elements in a container in the reverse direction. Elements can be accessed in the forward direction by using the decrement operator and in the backward direction by using the increment operator. The element that the iterator points to cannot be modified. Constant reverse bidirectional iterators can be used anywhere that a constant reverse input or constant reverse output iterator is required.
Assembly: Microsoft.VisualC.STLCLR (in Microsoft.VisualC.STLCLR.dll)
The ConstReverseBidirectionalIterator<TValue> type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ConstReverseBidirectionalIterator<TValue>() | Allocates and initializes a new ConstReverseBidirectionalIterator<TValue> object. |
![]() | ConstReverseBidirectionalIterator<TValue>(ConstReverseBidirectionalIterator<TValue>) | Allocates and initializes a new ConstReverseBidirectionalIterator<TValue> object from an existing ConstReverseBidirectionalIterator<TValue> object. |
![]() | ConstReverseBidirectionalIterator<TValue>(IBidirectionalIterator<TValue>) | Allocates and initializes a new ConstReverseBidirectionalIterator<TValue> object from an existing IBidirectionalIterator<TValue> object. |
![]() | ConstReverseBidirectionalIterator<TValue>(ReverseBidirectionalIterator<TValue>) | Allocates and initializes a new ConstReverseBidirectionalIterator<TValue> object from an existing ReverseBidirectionalIterator<TValue> object. |
| Name | Description | |
|---|---|---|
![]() | base | Gets the underlying base iterator for the ConstReverseBidirectionalIterator<TValue> object. |
![]() | Clone | Returns a copy of the current ConstReverseBidirectionalIterator<TValue> object. |
![]() | container | Gets the container that the iterator is traversing. |
![]() | equal_to(ConstReverseBidirectionalIterator<TValue>) | Determines whether the given ConstReverseBidirectionalIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object. |
![]() | equal_to(IInputIterator<TValue>) | Determines whether the given IInputIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | get_bias | Gets the bias of the iterator. The bias is the offset of the iterator from element zero. |
![]() | get_cref | Returns a constant reference to the element that the iterator is currently pointing to. |
![]() | get_node | Gets the node, or element, that the iterator is pointing to. |
![]() | get_ref | Returns a reference to the element that the iterator is currently pointing to. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | next | Decrements the iterator to the previous position in the underlying container, or to the first position in front of the beginning of container if the container has been completely traversed. |
![]() | prev | Increments the iterator to the next position in the underlying container, or to the first position beyond the end of container if the container has been completely traversed. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | valid | Determines whether the iterator is valid and can be safely used to traverse the underlying container. |
| Name | Description | |
|---|---|---|
![]() | Assign(ConstReverseBidirectionalIterator<TValue>) | Assigns the given ConstReverseBidirectionalIterator<TValue> object to the current object. |
![]() | Assign(ReverseBidirectionalIterator<TValue>) | Assigns the given ReverseBidirectionalIterator<TValue> object to the current object. |
![]() | Decrement(ConstReverseBidirectionalIterator<TValue>%) | Decrements the iterator by one element. Decrementing a reverse iterator is the same as incrementing a regular iterator. This is the prefix version of the decrement operator. |
![]() | Decrement(ConstReverseBidirectionalIterator<TValue>%, Int32) | Decrements the iterator by one element. Decrementing a reverse iterator is the same as incrementing a regular iterator. This is the postfix version of the decrement operator. |
![]() | Equality(ConstReverseBidirectionalIterator<TValue>) | Determines whether the given ConstReverseBidirectionalIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object. |
![]() | Equality(IInputIterator<TValue>) | Determines whether the given IInputIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object. |
![]() | Implicit(IBidirectionalIterator<TValue>) | Converts a ConstReverseBidirectionalIterator<TValue> to an IBidirectionalIterator<TValue>. |
![]() | Increment(ConstReverseBidirectionalIterator<TValue>%) | Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator. This is the prefix version of the increment operator. |
![]() | Increment(ConstReverseBidirectionalIterator<TValue>%, Int32) | Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator. This is the postfix version of the increment operator. |
![]() | Inequality(ConstReverseBidirectionalIterator<TValue>) | Determines whether the given ConstReverseBidirectionalIterator<TValue> object differs from the current ConstReverseBidirectionalIterator<TValue> object. |
![]() | Inequality(IInputIterator<TValue>) | Determines whether the given IInputIterator<TValue> object differs from the current ConstReverseBidirectionalIterator<TValue> object. |
![]() ![]() | MemberSelection | Returns the element that the iterator is currently pointing to. |
![]() ![]() | PointerDereference | Returns the element that the iterator is currently pointing to. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
