Prism Ruby parser
|
This represents the overall linked list. More...
#include <pm_list.h>
Data Fields | |
size_t | size |
The size of the list. | |
pm_list_node_t * | head |
A pointer to the head of the list. | |
pm_list_node_t * | tail |
A pointer to the tail of the list. | |
This represents the overall linked list.
It keeps a pointer to the head and tail so that iteration is easy and pushing new nodes is easy.