INode<TValue> Interface
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.
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.
generic <typename TValue>
public interface class INode
public interface INode<TValue>
type INode<'Value> = interface
Public Interface INode(Of TValue)
- TValue
The type of an element in the controlled sequence.
_Value |
Gets or sets the value of the element for this node in the container. |
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. |
Product | Versions |
---|---|
.NET Framework | 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: