ListPool.cs 600 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. namespace UnityEditor.Graphing
  3. {
  4. static class ListPool<T>
  5. {
  6. // Object pool to avoid allocations.
  7. static readonly ObjectPool<List<T>> s_ListPool = new ObjectPool<List<T>>(null, l => l.Clear());
  8. public static List<T> Get()
  9. {
  10. return s_ListPool.Get();
  11. }
  12. public static PooledObject<List<T>> GetDisposable()
  13. {
  14. return s_ListPool.GetDisposable();
  15. }
  16. public static void Release(List<T> toRelease)
  17. {
  18. s_ListPool.Release(toRelease);
  19. }
  20. }
  21. }