PooledList<T>.

PooledList(ArrayPool<T>) Constructor

Summary

Constructs a PooledList. The list is initially empty and has a capacity of zero. Upon adding the first element to the list the capacity is increased to DefaultCapacity, and then increased in multiples of two as required.
Namespace
Avalonia.Collections.Pooled
Containing Type
PooledList<T>

Syntax

public PooledList(ArrayPool<T> customPool)

Parameters

Name Type Description
customPool ArrayPool<T>

Return Value

Type Description
void