1 instantiation of NodeWithState
NuGet.DependencyResolver.Core (1)
GraphModel\GraphOperations.cs (1)
805return new NodeWithState<TItem, TState>
7 references to NodeWithState
NuGet.DependencyResolver.Core (7)
GraphModel\GraphOperations.cs (7)
566var work = queue.Dequeue(); 649private static void AddInnerNodesToQueue<TItem, TState>(IList<GraphNode<TItem>> innerNodes, Queue<NodeWithState<TItem, TState>> queue, TState innerState) 696private static Queue<NodeWithState<TItem, TState>>? _queue; 699public static Queue<NodeWithState<TItem, TState>> RentQueue() 708return new Queue<NodeWithState<TItem, TState>>(); 711public static void ReleaseQueue(Queue<NodeWithState<TItem, TState>> queue) 803public static NodeWithState<TItem, TState> Create<TItem, TState>(GraphNode<TItem> node, TState state)