mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 20:51:40 +00:00
21 lines
474 B
C#
21 lines
474 B
C#
using System.Collections.Generic;
|
|
|
|
namespace XCharts
|
|
{
|
|
internal static class ListPool<T>
|
|
{
|
|
private static readonly ObjectPool<List<T>> s_ListPool = new ObjectPool<List<T>>(null, Clear);
|
|
static void Clear(List<T> l) { l.Clear(); }
|
|
|
|
public static List<T> Get()
|
|
{
|
|
return s_ListPool.Get();
|
|
}
|
|
|
|
public static void Release(List<T> toRelease)
|
|
{
|
|
s_ListPool.Release(toRelease);
|
|
}
|
|
}
|
|
}
|