10 references to InsertRange
Microsoft.AspNetCore.Razor.Utilities.Shared (2)
PooledObjects\PooledArrayBuilder`1.cs (2)
427builder.InsertRange(index, items); 446_builder.InsertRange(index, items);
Microsoft.AspNetCore.Razor.Utilities.Shared.UnitTests (8)
ImmutableArrayExtensionsTests.cs (8)
120builder.InsertRange(1, ReadOnlySpan<int>.Empty); 138builder.InsertRange(builder.Count, itemsToInsert.AsSpan()); 155builder.InsertRange(1, itemToInsert.AsSpan()); 172builder.InsertRange(1, itemsToInsert.AsSpan()); 189builder.InsertRange(0, itemsToInsert.AsSpan()); 205Assert.Throws<ArgumentOutOfRangeException>(() => builder.InsertRange(-1, itemsToInsert.AsSpan())); 217Assert.Throws<ArgumentOutOfRangeException>(() => builder.InsertRange(builder.Count + 1, itemsToInsert.AsSpan())); 230builder.InsertRange(1, itemsToInsert.AsSpan());