Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PartitionedStream.cs
Go to the documentation of this file.
2
4
5internal class PartitionedStream<TElement, TKey>
6{
8
9 private readonly IComparer<TKey> _keyComparer;
10
12
14 {
15 get
16 {
17 return _partitions[index];
18 }
19 set
20 {
22 }
23 }
24
25 public int PartitionCount => _partitions.Length;
26
28
30
37}
readonly IComparer< TKey > _keyComparer
PartitionedStream(int partitionCount, IComparer< TKey > keyComparer, OrdinalIndexState indexState)
QueryOperatorEnumerator< TElement, TKey >[] _partitions
readonly OrdinalIndexState _indexState