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

◆ ShouldExitLoop() [2/2]

bool System.Threading.Tasks.ParallelLoopStateFlags32.ShouldExitLoop ( int CallerIteration)
inlinepackage

Definition at line 26 of file ParallelLoopStateFlags32.cs.

27 {
28 int loopStateFlags = base.LoopStateFlags;
29 if (loopStateFlags != 0)
30 {
31 if ((loopStateFlags & 0xD) == 0)
32 {
33 if (((uint)loopStateFlags & 2u) != 0)
34 {
35 return CallerIteration > LowestBreakIteration;
36 }
37 return false;
38 }
39 return true;
40 }
41 return false;
42 }

References System.Threading.Tasks.ParallelLoopStateFlags32.LowestBreakIteration.