Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Create< TSource >()
[4/4]
static
OrderablePartitioner
< TSource >
System.Collections.Concurrent.Partitioner
< TSource >.
Create
< TSource >
(
TSource[]
array
,
bool
loadBalance
)
inline
static
inherited
Definition at line
781
of file
Partitioner.cs
.
782
{
783
if
(
array
==
null
)
784
{
785
throw
new
ArgumentNullException(
"array"
);
786
}
787
if
(
loadBalance
)
788
{
789
return
new
DynamicPartitionerForArray<TSource>
(
array
);
790
}
791
return
new
StaticIndexRangePartitionerForArray<TSource>
(
array
);
792
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.array
@ array
References
System.array
.
System
Collections
Concurrent
Partitioner
StaticIndexRangePartitioner
Generated by
1.10.0