HashSetPool<T0>

class in UnityEngine.Pool

/

Inherits from:Pool.CollectionPool_2

/

Implemented in:UnityEngine.CoreModule

Description

A version of CollectionPool<T0,T1> for HashSets.

using UnityEngine.Pool;

public class Example { void GetPooled() { // Get a pooled instance var instance = HashSetPool<int>.Get();

// Use the HashSet

// Return it back to the pool HashSetPool<int>.Release(instance); } }

Inherited Members

Static Methods

GetGet an instance from the pool. If the pool is empty then a new instance will be created.
ReleaseReturns the instance back to the pool.

Did you find this page useful? Please give it a rating: