4 writes to _tail
System (4)
compmod\system\collections\generic\queue.cs (4)
65_tail = 0; 120_tail = 0; 208_tail = (_tail + 1) % _array.Length; 326_tail = (_size == capacity) ? 0 : _size;
8 references to _tail
System (8)
compmod\system\collections\generic\queue.cs (8)
112if (_head < _tail) 116Array.Clear(_array, 0, _tail); 207_array[_tail] = item; 208_tail = (_tail + 1) % _array.Length; 300if (_head < _tail) { 304Array.Copy(_array, 0, arr, _array.Length - _head, _tail); 316if (_head < _tail) { 320Array.Copy(_array, 0, newarray, _array.Length - _head, _tail);