Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ArrayMergeHelper.cs
Go to the documentation of this file.
3
5
6internal sealed class ArrayMergeHelper<TInputOutput> : IMergeHelper<TInputOutput>
7{
9
10 private readonly TInputOutput[] _outputArray;
11
13
21
22 private void ToArrayElement(int index)
23 {
25 }
26
33
34 [ExcludeFromCodeCoverage(Justification = "ArrayMergeHelper<>.GetEnumerator() is not intended to be used")]
36 {
37 return ((IEnumerable<TInputOutput>)GetResultsAsArray()).GetEnumerator();
38 }
39
41 {
42 return _outputArray;
43 }
44}
static ParallelQuery< int > Range(int start, int count)
readonly QueryResults< TInputOutput > _queryResults
IEnumerator< TInputOutput > GetEnumerator()
ArrayMergeHelper(QuerySettings settings, QueryResults< TInputOutput > queryResults)