1 instantiation of NodeWithState
NuGet.DependencyResolver.Core (1)
GraphModel\GraphOperations.cs (1)
798return new NodeWithState<TItem, TState>
7 references to NodeWithState
NuGet.DependencyResolver.Core (7)
GraphModel\GraphOperations.cs (7)
559var work = queue.Dequeue(); 642private static void AddInnerNodesToQueue<TItem, TState>(IList<GraphNode<TItem>> innerNodes, Queue<NodeWithState<TItem, TState>> queue, TState innerState) 689private static Queue<NodeWithState<TItem, TState>> _queue; 692public static Queue<NodeWithState<TItem, TState>> RentQueue() 701return new Queue<NodeWithState<TItem, TState>>(); 704public static void ReleaseQueue(Queue<NodeWithState<TItem, TState>> queue) 796public static NodeWithState<TItem, TState> Create<TItem, TState>(GraphNode<TItem> node, TState state)