ContainerBidirectionalIterator<TValue>.Decrement Operator

Definition

Decrements the iterator by one element.

Overloads

Decrement(ContainerBidirectionalIterator<TValue>)

Decrements the iterator by one element. This is the prefix version of the decrement operator.

Decrement(Int32, Int32)

Decrements the iterator by one element. This is the postfix version of the decrement operator.

Decrement(ContainerBidirectionalIterator<TValue>)

Decrements the iterator by one element. This is the prefix version of the decrement operator.

public:
 void ^ operator --(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ % unnamedParam1);
public void operator -- (ref Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> unnamedParam1);
member this.op_Decrement : ContainerBidirectionalIterator -> unit
Public op_Decrement (ByRef unnamedParam1 As ContainerBidirectionalIterator(Of TValue)) As Void

Parameters

unnamedParam1
ContainerBidirectionalIterator<TValue>

The current iterator.

Applies to

Decrement(Int32, Int32)

Decrements the iterator by one element. This is the postfix version of the decrement operator.

public:
 void ^ operator --(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ % , int );
public void operator -- (ref Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> , int );
member this.op_Decrement :  * int -> unit
Public op_Decrement (ByRef  As ContainerBidirectionalIterator(Of TValue),  As Integer) As Void

Parameters

A_0
Int32

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

Applies to