ConstReverseRandomAccessIterator<TValue> Constructors

Definition

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object.

Overloads

ConstReverseRandomAccessIterator<TValue>()

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object.

ConstReverseRandomAccessIterator<TValue>(ConstReverseRandomAccessIterator<TValue>)

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object from an existing ConstReverseRandomAccessIterator<TValue> object.

ConstReverseRandomAccessIterator<TValue>(IRandomAccessIterator<TValue>)

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object from an existing IRandomAccessIterator<TValue> object.

ConstReverseRandomAccessIterator<TValue>(ReverseRandomAccessIterator<TValue>)

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object from an existing ReverseRandomAccessIterator<TValue> object.

ConstReverseRandomAccessIterator<TValue>()

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object.

public:
 ConstReverseRandomAccessIterator();
public ConstReverseRandomAccessIterator ();
Public Sub New ()

Applies to

ConstReverseRandomAccessIterator<TValue>(ConstReverseRandomAccessIterator<TValue>)

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object from an existing ConstReverseRandomAccessIterator<TValue> object.

public:
 ConstReverseRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ _Right);
public ConstReverseRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> _Right);
new Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value>
Public Sub New (_Right As ConstReverseRandomAccessIterator(Of TValue))

Parameters

_Right
ConstReverseRandomAccessIterator<TValue>

An existing ConstReverseRandomAccessIterator<TValue> object to be copied to the current container.

Applies to

ConstReverseRandomAccessIterator<TValue>(IRandomAccessIterator<TValue>)

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object from an existing IRandomAccessIterator<TValue> object.

public:
 ConstReverseRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Iter);
public ConstReverseRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Iter);
new Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value>
Public Sub New (_Iter As IRandomAccessIterator(Of TValue))

Parameters

_Iter
IRandomAccessIterator<TValue>

An existing IRandomAccessIterator<TValue> object to be copied to the current container.

Applies to

ConstReverseRandomAccessIterator<TValue>(ReverseRandomAccessIterator<TValue>)

Allocates and initializes a new ConstReverseRandomAccessIterator<TValue> object from an existing ReverseRandomAccessIterator<TValue> object.

public:
 ConstReverseRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ _Iter);
public ConstReverseRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> _Iter);
new Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value>
Public Sub New (_Iter As ReverseRandomAccessIterator(Of TValue))

Parameters

_Iter
ReverseRandomAccessIterator<TValue>

An existing ReverseRandomAccessIterator<TValue> object to be copied to the current container.

Applies to