My library
Library for common tasks
Data Fields
LinkedList Struct Reference

LinkedList type More...

#include <types.h>

Collaboration diagram for LinkedList:
Collaboration graph
[legend]

Data Fields

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

Detailed Description

LinkedList 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 LinkedList::head

Head of the LinkedList.

◆ size

unsigned int LinkedList::size

The number of elements contained by the LinkedList.

◆ tail

Node LinkedList::tail

Tail of the LinkedList.

◆ type

spec_t LinkedList::type

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


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