ContainerRandomAccessIterator<TValue> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
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.