DictionaryPool.cs 686 B

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