ReverseBidirectionalIterator<TValue>.Decrement Operator
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.
Decrements the iterator by one element. Decrementing a reverse iterator is the same as incrementing a regular iterator.
Overloads
Decrement(ReverseBidirectionalIterator<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(Int32, 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. |
Decrement(ReverseBidirectionalIterator<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.
public:
void ^ operator --(Microsoft::VisualC::StlClr::Generic::ReverseBidirectionalIterator<TValue> ^ % unnamedParam1);
public void operator -- (ref Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> unnamedParam1);
member this.op_Decrement : ReverseBidirectionalIterator -> unit
Public op_Decrement (ByRef unnamedParam1 As ReverseBidirectionalIterator(Of TValue)) As Void
Parameters
- unnamedParam1
- ReverseBidirectionalIterator<TValue>
The current iterator.
Applies to
Decrement(Int32, 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.
public:
void ^ operator --(Microsoft::VisualC::StlClr::Generic::ReverseBidirectionalIterator<TValue> ^ % , int );
public void operator -- (ref Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> , int );
member this.op_Decrement : * int -> unit
Public op_Decrement (ByRef As ReverseBidirectionalIterator(Of TValue), As Integer) As Void
Parameters
- A_0
- Int32
An unused parameter that indicates this is the postfix version of the operator.