#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace UniRx.Async.Internal { internal static class ArrayUtil { [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void EnsureCapacity(ref T[] array, int index) { if (array.Length <= index) { EnsureCore(ref array, index); } } // rare case, no inlining. [MethodImpl(MethodImplOptions.NoInlining)] static void EnsureCore(ref T[] array, int index) { var newSize = array.Length * 2; var newArray = new T[(index < newSize) ? newSize : (index * 2)]; Array.Copy(array, 0, newArray, 0, array.Length); array = newArray; } /// /// Optimizing utility to avoid .ToArray() that creates buffer copy(cut to just size). /// public static (T[] array, int length) Materialize(IEnumerable source) { if (source is T[] array) { return (array, array.Length); } var defaultCount = 4; if (source is ICollection coll) { defaultCount = coll.Count; var buffer = new T[defaultCount]; coll.CopyTo(buffer, 0); return (buffer, defaultCount); } else if (source is IReadOnlyCollection rcoll) { defaultCount = rcoll.Count; } if (defaultCount == 0) { return (Array.Empty(), 0); } { var index = 0; var buffer = new T[defaultCount]; foreach (var item in source) { EnsureCapacity(ref buffer, index); buffer[index++] = item; } return (buffer, index); } } } } #endif