ContainerBidirectionalIterator<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 ContainerBidirectionalIterator<TValue> object.
Overloads
ContainerBidirectionalIterator<TValue>() |
Allocates and initializes a new ContainerBidirectionalIterator<TValue> object. |
ContainerBidirectionalIterator<TValue>(ContainerBidirectionalIterator<TValue>) |
Allocates and initializes a new ContainerBidirectionalIterator<TValue> object from an existing ContainerBidirectionalIterator<TValue> object. |
ContainerBidirectionalIterator<TValue>(INode<TValue>) |
Allocates and initializes a new ContainerBidirectionalIterator<TValue> object that points to the given node. |
ContainerBidirectionalIterator<TValue>()
Allocates and initializes a new ContainerBidirectionalIterator<TValue> object.
public:
ContainerBidirectionalIterator();
public ContainerBidirectionalIterator ();
Public Sub New ()
Applies to
ContainerBidirectionalIterator<TValue>(ContainerBidirectionalIterator<TValue>)
Allocates and initializes a new ContainerBidirectionalIterator<TValue> object from an existing ContainerBidirectionalIterator<TValue> object.
public:
ContainerBidirectionalIterator(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ _Right);
public ContainerBidirectionalIterator (Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> _Right);
new Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> : Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> -> Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value>
Public Sub New (_Right As ContainerBidirectionalIterator(Of TValue))
Parameters
An existing ContainerBidirectionalIterator<TValue> object to copy.
Applies to
ContainerBidirectionalIterator<TValue>(INode<TValue>)
Allocates and initializes a new ContainerBidirectionalIterator<TValue> object that points to the given node.
public:
ContainerBidirectionalIterator(Microsoft::VisualC::StlClr::Generic::INode<TValue> ^ _Node);
public ContainerBidirectionalIterator (Microsoft.VisualC.StlClr.Generic.INode<TValue> _Node);
new Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value> : Microsoft.VisualC.StlClr.Generic.INode<'Value> -> Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<'Value>
Public Sub New (_Node As INode(Of TValue))
Parameters
- _Node
- INode<TValue>
The node that the iterator will point to.