Version: 2023.2
언어: 한국어
public static bool IsDefaultValue (ref Unity.Collections.LowLevel.Unsafe.AtomicSafetyHandle handle);

파라미터

handle Safety handle.

반환

bool true if the handle has not yet been initialized and still has its default value; false otherwise.

설명

Check if the handle still has its default value (i.e. has not yet been initialized by being assigned or passed to AtomicSafetyHandle.Create).

By default, an AtomicSafetyHandle variable is not initialised, which means it does not reference any central record and has not stored a version number. This changes when you pass the variable to AtomicSafetyHandle.Create, or when you assign it from an existing initialised AtomicSafetyHandle.