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

◆ NullableLowestBreakIteration

long? System.Threading.Tasks.ParallelLoopStateFlags64.NullableLowestBreakIteration
getpackage

Definition at line 19 of file ParallelLoopStateFlags64.cs.

20 {
21 get
22 {
23 if (_lowestBreakIteration == long.MaxValue)
24 {
25 return null;
26 }
27 if (IntPtr.Size >= 8)
28 {
30 }
31 return Interlocked.Read(ref _lowestBreakIteration);
32 }
33 }