1 write to _stack
Test.Utilities (1)
SmallDictionary.cs (1)
644
_stack
= new Stack<AvlNode>(dict.HeightApprox());
6 references to _stack
Test.Utilities (6)
SmallDictionary.cs (6)
645
_stack
.Push(root);
661
if (
_stack
== null ||
_stack
.Count == 0)
666
var curr =
_stack
.Pop();
670
PushIfNotNull(
_stack
, curr.Left);
671
PushIfNotNull(
_stack
, curr.Right);