Creates a node.

Namespace: Spherical.Nodes
Assembly: SphericalLib (in SphericalLib.dll) Version: 1.0.5951.32246 (1.0.0.0)

Syntax

C#
public Node(
	T data,
	NodeList<T> links
)
Visual C++
public:
Node(
	T data, 
	NodeList<T>^ links
)
F#
new : 
        data:'T * 
        links:NodeList<'T> -> Node

Parameters

data
Type: T
The data to store.
links
Type: Spherical.Nodes..::..NodeList<(Of <(<'T>)>)>
The nodes to link to.

See Also