ConstContainerRandomAccessIterator<TValue> Constructors
Definition
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object.
Overloads
ConstContainerRandomAccessIterator<TValue>() |
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object. |
ConstContainerRandomAccessIterator<TValue>(ConstContainerRandomAccessIterator<TValue>) |
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object from an existing ConstContainerRandomAccessIterator<TValue> object. |
ConstContainerRandomAccessIterator<TValue>(ContainerRandomAccessIterator<TValue>) |
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object from an existing ContainerRandomAccessIterator<TValue> object. |
ConstContainerRandomAccessIterator<TValue>(IRandomAccessContainer<TValue>, Int32) |
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object from an existing IRandomAccessContainer<TValue> object. |
ConstContainerRandomAccessIterator<TValue>()
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object.
public:
ConstContainerRandomAccessIterator();
public ConstContainerRandomAccessIterator ();
Public Sub New ()
Applies to
ConstContainerRandomAccessIterator<TValue>(ConstContainerRandomAccessIterator<TValue>)
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object from an existing ConstContainerRandomAccessIterator<TValue> object.
public:
ConstContainerRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::ConstContainerRandomAccessIterator<TValue> ^ _Right);
public ConstContainerRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> _Right);
new Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value>
Public Sub New (_Right As ConstContainerRandomAccessIterator(Of TValue))
Parameters
An existing ConstContainerRandomAccessIterator<TValue> object to be copied to the current container.
Applies to
ConstContainerRandomAccessIterator<TValue>(ContainerRandomAccessIterator<TValue>)
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object from an existing ContainerRandomAccessIterator<TValue> object.
public:
ConstContainerRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Right);
public ConstContainerRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Right);
new Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value>
Public Sub New (_Right As ContainerRandomAccessIterator(Of TValue))
Parameters
An existing ContainerRandomAccessIterator<TValue> object to be copied to the current container.
Applies to
ConstContainerRandomAccessIterator<TValue>(IRandomAccessContainer<TValue>, Int32)
Allocates and initializes a new ConstContainerRandomAccessIterator<TValue> object from an existing IRandomAccessContainer<TValue> object.
public:
ConstContainerRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::IRandomAccessContainer<TValue> ^ _Cont, int _Offset);
public ConstContainerRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.IRandomAccessContainer<TValue> _Cont, int _Offset);
new Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.IRandomAccessContainer<'Value> * int -> Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value>
Public Sub New (_Cont As IRandomAccessContainer(Of TValue), _Offset As Integer)
Parameters
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.