Version: 2021.1
言語: 日本語

HashSetPool<T0>

class in UnityEngine.Pool

/

継承:Pool.CollectionPool_2

マニュアルに切り替える

説明

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); } }

継承メンバー

Static 関数

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.