[Overview][Types][Classes][Index] Reference for unit 'LazCollections' (#lazutils)

TLazFifoQueue.IsEmpty

Indicates if none of the internal storage slots have been used in the queue storage.

Declaration

Source position: lazcollections.pas line 76

public property TLazFifoQueue.IsEmpty : Boolean
  read GetIsEmpty;

Description

IsEmpty is a read-only Boolean property which indicates if none of the storage slots are used in the internal storage for the queue. The value is True when TotalItemsPushed and TotalItemsPopped have the same value.

Use IsFull to determine if all available storage slots are in use in the internal storage for the queue.

See also

TLazFifoQueue.TotalItemsPopped

  

Total number of entries that have been popped off of the queue.

TLazFifoQueue.TotalItemsPushed

  

Total number of entries that have been pushed onto the queue.

TLazFifoQueue.IsFull

  

Indicates if all of the internal storage slots have been used in the queue storage.


Version 4.0 Generated 2025-05-03 Home