[This is preliminary documentation and is subject to change.]
Represents a node (vertex) in a graph.
Namespace: Microsoft.Research.Naiad.Frameworks.GraphLINQ
Assembly: Microsoft.Research.Naiad.GraphLINQ (in Microsoft.Research.Naiad.GraphLINQ.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public struct Node : IEquatable<Node>
The Node type exposes the following members.
Constructors
Name | Description | |
---|---|---|
Node |
Constructs a node with the given index.
|
Methods
Name | Description | |
---|---|---|
Equals |
Returns true if this node and the other node have the same index.
| |
GetHashCode |
GetHashCode override
(Overrides ValueTypeGetHashCode.) | |
ToString |
Returns a string representation of this node.
(Overrides ValueTypeToString.) | |
WithValueTValue |
Creates a NodeWithValueTValue with this node and the given value.
|
Operators
Name | Description | |
---|---|---|
(Node to Int32) |
Implicitly extracts the integer index of a node
|
Fields
Name | Description | |
---|---|---|
index |
The unique index of the node.
|
See Also