Interface IDirectedAcyclicGraph<T>
Wrapper abstraction for an "object which has a collection of parents", to allow for some shared code between Expression and Table.
Namespace: Mangrove.MetricSetSyntaxTree
Assembly: MetricSetSyntaxTree.dll
Syntax
public interface IDirectedAcyclicGraph<out T>
where T : IDirectedAcyclicGraph<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
View SourceParents
Parent nodes of this one.
Declaration
IReadOnlyList<T> Parents { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<T> |