StackPool.cs 610 B

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