PooledList<T>.

InsertRange(int, ReadOnlySpan<T>) Method

Summary

Inserts the elements of the given collection at a given index. If required, the capacity of the list is increased to twice the previous capacity or the new size, whichever is larger. Ranges may be added to the end of the list by setting index to the List's size.
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

public void InsertRange(int index, ReadOnlySpan<T> span)

Parameters

Name Type Description
index int
span ReadOnlySpan<T>

Return Value

Type Description
void