PooledList<T>.

AddRange(ReadOnlySpan<T>) Method

Summary

Adds the elements of the given ReadOnlySpan<T> to the end of this list. If required, the capacity of the list is increased to twice the previous capacity or the new size, whichever is larger.
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

public void AddRange(ReadOnlySpan<T> span)

Parameters

Name Type Description
span ReadOnlySpan<T>

Return Value

Type Description
void