Redigera

ContainerRandomAccessIterator<TValue> Constructors

Definition

Allocates and initializes a new ContainerRandomAccessIterator<TValue> object.

Overloads

ContainerRandomAccessIterator<TValue>()

Allocates and initializes a new ContainerRandomAccessIterator<TValue> object.

ContainerRandomAccessIterator<TValue>(ContainerRandomAccessIterator<TValue>)

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

ContainerRandomAccessIterator<TValue>(IRandomAccessContainer<TValue>, Int32)

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

ContainerRandomAccessIterator<TValue>()

Allocates and initializes a new ContainerRandomAccessIterator<TValue> object.

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

Applies to

ContainerRandomAccessIterator<TValue>(ContainerRandomAccessIterator<TValue>)

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

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

Parameters

_Right
ContainerRandomAccessIterator<TValue>

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

Applies to

ContainerRandomAccessIterator<TValue>(IRandomAccessContainer<TValue>, Int32)

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

public:
 ContainerRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::IRandomAccessContainer<TValue> ^ _Cont, int _Offset);
public ContainerRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.IRandomAccessContainer<TValue> _Cont, int _Offset);
new Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.IRandomAccessContainer<'Value> * int -> Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value>
Public Sub New (_Cont As IRandomAccessContainer(Of TValue), _Offset As Integer)

Parameters

_Cont
IRandomAccessContainer<TValue>

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

_Offset
Int32

The offset of the element that the iterator will point to after creation.

Applies to