INode<TValue> Interface
.NET Framework (current version)
Interface for the node data structure. Containers that support bidirectional iteration contain nodes. A node consists of a value for the element at that position in the container and pointers to the next and previous elements in the container.
Assembly: Microsoft.VisualC.STLCLR (in Microsoft.VisualC.STLCLR.dll)
| Name | Description | |
|---|---|---|
![]() | _Value | Gets or sets the value of the element for this node in the container. |
| Name | Description | |
|---|---|---|
![]() | container() | Gets the container that the current node is in. |
![]() | is_head() | Determines whether the current node is the first node of the container. |
![]() | next_node() | Gets the next node in the container past the current node. |
![]() | prev_node() | Gets the node in the container immediately before the current node. |
.NET Framework
Available since 3.5
Available since 3.5
Show:

