ContainerRandomAccessIterator<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(ContainerRandomAccessIterator<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.

distance(ContainerRandomAccessIterator<TValue>)

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

public:
 int distance(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Right);
public int distance (Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Right);
member this.distance : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> -> int
Public Function distance (_Right As ContainerRandomAccessIterator(Of TValue)) As Integer

Parameters

_Right
ContainerRandomAccessIterator<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 will be negative if _Right points to an element that is before the element that the current iterator points to.

Applies 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.

public:
 virtual int distance(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Right);
public virtual int distance (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);
abstract member distance : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> int
override this.distance : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> int
Public Overridable Function distance (_Right As IRandomAccessIterator(Of TValue)) As Integer

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 will be negative if _Right points to an element that is before the element that the current iterator points to.

Implements

Applies to