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

◆ GetDefaultChunkSize< T >()

static int System.Linq.Parallel.Scheduling.GetDefaultChunkSize< T > ( )
inlinestaticpackage

Definition at line 12 of file Scheduling.cs.

13 {
14 if (typeof(T).IsValueType)
15 {
16 return 128;
17 }
18 return 512 / IntPtr.Size;
19 }

References System.IntPtr.Size.