ConstReverseRandomAccessIterator<TValue>.Subtraction 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 the given number of elements, or determines the difference between two iterators.
Overloads
Subtraction(IRandomAccessIterator<TValue>) |
Determines the difference between two iterators. |
Subtraction(ConstReverseRandomAccessIterator<TValue>, Int32) |
Decrements the iterator by the given number of elements. The integer parameter is specified on the right side of the subtraction operator. |
Subtraction(IRandomAccessIterator<TValue>)
Determines the difference between two iterators.
public:
int operator -(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Right);
public int operator - (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);
member this.( - ) : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> int
Public Operator - (_Right As IRandomAccessIterator(Of TValue)) As Integer
Parameters
The IRandomAccessIterator<TValue> to be subtracted from the current ConstReverseRandomAccessIterator<TValue> object.
Returns
The difference (number of elements) between the two iterators.
Applies to
Subtraction(ConstReverseRandomAccessIterator<TValue>, Int32)
Decrements the iterator by the given number of elements. The integer parameter is specified on the right side of the subtraction operator.
public:
void ^ operator -(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ % unnamedParam1, int _Right);
public void operator - (ref Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> unnamedParam1, int _Right);
member this.( - ) : ConstReverseRandomAccessIterator * int -> unit
Public Operator - (ByRef unnamedParam1 As ConstReverseRandomAccessIterator(Of TValue), _Right As Integer) As Void
Parameters
- unnamedParam1
- ConstReverseRandomAccessIterator<TValue>
The current iterator.
- _Right
- Int32
The number of elements to decrement.