Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetEnumerator() [3/3]

IEnumerator< T > System.Collections.Concurrent.ConcurrentStack< T >.GetEnumerator ( Node head)
inlineprivate

Definition at line 337 of file ConcurrentStack.cs.

338 {
339 for (Node current = head; current != null; current = current._next)
340 {
341 yield return current._value;
342 }
343 }

References System.Collections.Concurrent.ConcurrentStack< T >.Node._next.