#region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#endregion
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Google.Protobuf.Reflection
{
///
/// Internal class containing utility methods when working with descriptors.
///
internal static class DescriptorUtil
{
///
/// Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert
/// arrays.
///
internal delegate TOutput IndexedConverter(TInput element, int index);
///
/// Converts the given array into a read-only list, applying the specified conversion to
/// each input element.
///
internal static IList ConvertAndMakeReadOnly
(IList input, IndexedConverter converter)
{
TOutput[] array = new TOutput[input.Count];
for (int i = 0; i < array.Length; i++)
{
array[i] = converter(input[i], i);
}
return new ReadOnlyCollection(array);
}
}
}