Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ListAccessor.cs « Sorting « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f26f1ff5acaa8b4f833126f3278875ce6d9b8d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Collections.Generic;

namespace ILCompiler.Sorting.Implementation
{
    internal struct ListAccessor<T> : ISortableDataStructureAccessor<T, List<T>>
    {
        public void Copy(List<T> source, int sourceIndex, T[] target, int destIndex, int length)
        {
            source.CopyTo(sourceIndex, target, destIndex, length);
        }

        public void Copy(T[] source, int sourceIndex, List<T> target, int destIndex, int length)
        {
            for (int i = 0; i < length; i++)
            {
                target[i + destIndex] = source[i + sourceIndex];
            }
        }

        public T GetElement(List<T> dataStructure, int i)
        {
            return dataStructure[i];
        }

        public int GetLength(List<T> dataStructure)
        {
            return dataStructure.Count;
        }

        public void SetElement(List<T> dataStructure, int i, T value)
        {
            dataStructure[i] = value;
        }

        public void SwapElements(List<T> dataStructure, int i, int i2)
        {
            T temp = dataStructure[i];
            dataStructure[i] = dataStructure[i2];
            dataStructure[i2] = temp;
        }
    }
}