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