|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Immutable;
using Microsoft.CodeAnalysis.PooledObjects;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.Shared.Extensions
{
internal static class ObjectWriterExtensions
{
public static void WriteArray<T>(this ObjectWriter writer, ImmutableArray<T> values, Action<ObjectWriter, T> write)
{
writer.WriteInt32(values.Length);
foreach (var val in values)
write(writer, val);
}
}
internal static class ObjectReaderExtensions
{
public static ImmutableArray<T> ReadArray<T>(this ObjectReader reader, Func<ObjectReader, T> read)
{
var length = reader.ReadInt32();
using var _ = ArrayBuilder<T>.GetInstance(length, out var builder);
for (var i = 0; i < length; i++)
builder.Add(read(reader));
return builder.ToImmutableAndClear();
}
}
}
|