CallGraph.GetDirectDependencies(CallGraphNode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the children nodes of a given node. Each key in the returned lookup is a child node of the given node. Each value in the lookup is an edge connecting the given node to the child node represented by the associated key. Returns an empty ILookup if the node was found with no dependencies or was not found in the graph.
public System.Linq.ILookup<Microsoft.Quantum.QsCompiler.DependencyAnalysis.CallGraphNode,Microsoft.Quantum.QsCompiler.DependencyAnalysis.CallGraphEdge> GetDirectDependencies (Microsoft.Quantum.QsCompiler.DependencyAnalysis.CallGraphNode node);
member this.GetDirectDependencies : Microsoft.Quantum.QsCompiler.DependencyAnalysis.CallGraphNode -> System.Linq.ILookup<Microsoft.Quantum.QsCompiler.DependencyAnalysis.CallGraphNode, Microsoft.Quantum.QsCompiler.DependencyAnalysis.CallGraphEdge>
Public Function GetDirectDependencies (node As CallGraphNode) As ILookup(Of CallGraphNode, CallGraphEdge)
Parameters
- node
- CallGraphNode