My library
Library for common tasks
Data Fields
Queue Struct Reference

Queue type More...

#include <types.h>

Collaboration diagram for Queue:
Collaboration graph
[legend]

Data Fields

spec_t type
 The type of the elements contained by the Queue. Refer to spec_t. More...
 
Node head
 Head of the Queue. More...
 
Node tail
 Tail of the Queue. More...
 
unsigned int size
 The number of elements contained by the Queue. More...
 

Detailed Description

Queue type

Note
All the parameters in this structure must be intended as read-only. Manually modifying them can cause unknown and unwanted behavior

Field Documentation

◆ head

Node Queue::head

Head of the Queue.

◆ size

unsigned int Queue::size

The number of elements contained by the Queue.

◆ tail

Node Queue::tail

Tail of the Queue.

◆ type

spec_t Queue::type

The type of the elements contained by the Queue. Refer to spec_t.


The documentation for this struct was generated from the following file: