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

◆ ShouldExitLoop() [2/2]

bool System.Threading.Tasks.ParallelLoopStateFlags64.ShouldExitLoop ( long CallerIteration)
inlinepackage

Definition at line 35 of file ParallelLoopStateFlags64.cs.

36 {
37 int loopStateFlags = base.LoopStateFlags;
38 if (loopStateFlags != 0)
39 {
40 if ((loopStateFlags & 0xD) == 0)
41 {
42 if (((uint)loopStateFlags & 2u) != 0)
43 {
44 return CallerIteration > LowestBreakIteration;
45 }
46 return false;
47 }
48 return true;
49 }
50 return false;
51 }

References System.Threading.Tasks.ParallelLoopStateFlags64.LowestBreakIteration.