Class DirectedMetaGraphExtensions
Contains extension methods for the directed graph.
Inheritance
System.Object
DirectedMetaGraphExtensions
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public static class DirectedMetaGraphExtensions
Methods
Extract(DirectedMetaGraph, Func<UInt32, UInt32>)
Extracts a part of the graph transforming the vertices along the way.
Declaration
public static DirectedMetaGraph Extract(this DirectedMetaGraph graph, Func<uint, uint> transform)
Parameters
|
DirectedMetaGraph
graph
The graph. |
|
Func<System.UInt32, System.UInt32>
transform
The transform function, returns Constant.NO_VERTEX when a vertex needs to be skipped. |
Returns
|
DirectedMetaGraph
|