ReverseBidirectionalIterator<TValue>.Decrement Operator

Definition

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.

C#
public void operator --(ref Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> unnamedParam1);

Parameters

unnamedParam1
ReverseBidirectionalIterator<TValue>

The current iterator.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

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.

C#
public void operator --(ref Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> , int );

Parameters

A_0
Int32

An unused parameter that indicates this is the postfix version of the operator.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1