Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


IsEmpty()

Returns true if this queue is empty.
Read time 1 minuteLast updated 7 days ago

Definition

  • Type: Method
  • Namespace: Unity.Collections
  • Assembly: UnityEngine.ManagedKernelModule
public readonly bool IsEmpty()

Returns

Type

Description

boolTrue if this queue has no items or if the queue has not been constructed.

Remarks

Note that getting the count requires traversing the queue's internal linked list of blocks. Where possible, cache this value instead of reading the property repeatedly.