ReverseRandomAccessIterator<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 ReverseRandomAccessIterator<TValue> object.
Overloads
ReverseRandomAccessIterator<TValue>() |
Allocates and initializes a new ReverseRandomAccessIterator<TValue> object. |
ReverseRandomAccessIterator<TValue>(IRandomAccessIterator<TValue>) |
Allocates and initializes a new ReverseRandomAccessIterator<TValue> object from an existing IRandomAccessIterator<TValue> object. |
ReverseRandomAccessIterator<TValue>(ReverseRandomAccessIterator<TValue>) |
Allocates and initializes a new ReverseRandomAccessIterator<TValue> object from an existing ReverseRandomAccessIterator<TValue> object. |
ReverseRandomAccessIterator<TValue>()
Allocates and initializes a new ReverseRandomAccessIterator<TValue> object.
public:
ReverseRandomAccessIterator();
public ReverseRandomAccessIterator ();
Public Sub New ()
Applies to
ReverseRandomAccessIterator<TValue>(IRandomAccessIterator<TValue>)
Allocates and initializes a new ReverseRandomAccessIterator<TValue> object from an existing IRandomAccessIterator<TValue> object.
public:
ReverseRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Iter);
public ReverseRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Iter);
new Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value>
Public Sub New (_Iter As IRandomAccessIterator(Of TValue))
Parameters
An existing IRandomAccessIterator<TValue> object to be copied to the current container.
Applies to
ReverseRandomAccessIterator<TValue>(ReverseRandomAccessIterator<TValue>)
Allocates and initializes a new ReverseRandomAccessIterator<TValue> object from an existing ReverseRandomAccessIterator<TValue> object.
public:
ReverseRandomAccessIterator(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ _Right);
public ReverseRandomAccessIterator (Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> _Right);
new Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> : Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value>
Public Sub New (_Right As ReverseRandomAccessIterator(Of TValue))
Parameters
An existing ReverseRandomAccessIterator<TValue> object to be copied to the current container.