ReverseRandomAccessIterator<TValue>.distance Method

Definition

Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

Overloads

distance(IRandomAccessIterator<TValue>)

Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

distance(ReverseRandomAccessIterator<TValue>)

Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

distance(IRandomAccessIterator<TValue>)

Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

C#
public virtual int distance(Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);

Parameters

_Right
IRandomAccessIterator<TValue>

A valid iterator that points to the same container as the current iterator.

Returns

The distance, in number of elements, between the element that the current iterator is pointing to and the element that _Right is pointing to. This number is negative if _Right points to an element that is before the element that the current iterator points to.

Implements

Applies to

.NET Framework 4.8.1 an aner Versiounen
Produkt Versiounen
.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

distance(ReverseRandomAccessIterator<TValue>)

Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.

C#
public int distance(Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> _Right);

Parameters

_Right
ReverseRandomAccessIterator<TValue>

A valid iterator that points to the same container as the current iterator.

Returns

The distance, in number of elements, between the element that the current iterator is pointing to and the element that _Right is pointing to. This number is negative if _Right points to an element that is before the element that the current iterator points to.

Applies to

.NET Framework 4.8.1 an aner Versiounen
Produkt Versiounen
.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