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

◆ IsEmpty

Definition at line 63 of file SingleProducerSingleConsumerQueue.cs.

64 {
65 get
66 {
67 Segment head = _head;
68 if (head._state._first != head._state._lastCopy)
69 {
70 return false;
71 }
72 if (head._state._first != head._state._last)
73 {
74 return false;
75 }
76 return head._next == null;
77 }
78 }