LinkedListQueue.QueueItem

Type of items in queue - a struct of value and pointer to next item

class LinkedListQueue(T, alias gc_tracking_policy = GCTrackingPolicy.refTypesOnly)
protected
struct QueueItem {}

Members

Functions

find
QueueItem* find(T find_value)

Finds a QueueItem which contains the given value

Variables

next
QueueItem* next;

Pointer to next item in queue

value
T value;

The value stored in this item

Meta