2 instantiations of InternalPartitionEnumerable
mscorlib (2)
system\collections\concurrent\PartitionerStatic.cs (2)
530
IEnumerable<KeyValuePair<long, TSource>> partitionEnumerable = new
InternalPartitionEnumerable
(m_source.GetEnumerator(), m_useSingleChunking, true);
544
return new
InternalPartitionEnumerable
(m_source.GetEnumerator(), m_useSingleChunking, false);
3 references to InternalPartitionEnumerable
mscorlib (3)
system\collections\concurrent\PartitionerStatic.cs (3)
642
return ((
InternalPartitionEnumerable
)this).GetEnumerator();
911
private
InternalPartitionEnumerable
m_enumerable;
920
InternalPartitionEnumerable
enumerable,