Interface INode<T>
A node in a graph.
Namespace: Virtlink.Utilib.Collections.Graphs
Assembly: Virtlink.Utilib.dll
Syntax
public interface INode<out T>
where T : INode<T>
Type Parameters
Name | Description |
---|---|
T | The type of node. |
Properties
| Improve this Doc View SourceChildren
Gets the children of the node.
Declaration
IReadOnlyCollection<T> Children { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<T> | A collection of child nodes. |