2026-06-02 10:26:44 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +08:00
|
|
|
{
|
|
|
|
|
public static class ListPool<T>
|
|
|
|
|
{
|
|
|
|
|
private static readonly ObjectPool<List<T>> s_ListPool = new(null, Clear);
|
|
|
|
|
|
|
|
|
|
private 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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|