4 writes to stack
System (4)
compmod\system\collections\generic\sortedset.cs (4)
2178
stack
= new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.Count + 1));
2195
stack
= new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.Count + 1));
2211
stack
= null;
2244
stack
= new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(tree.Count + 1));
5 references to stack
System (5)
compmod\system\collections\generic\sortedset.cs (5)
2270
stack
.Push(node);
2290
if (
stack
.Count == 0) {
2295
current =
stack
.Pop();
2302
stack
.Push(node);
2346
stack
.Clear();