Ruby
3.4.0dev (2024-11-05 revision e440268d51fe02b303e3817a7a733a0dac1c5091)
|
This represents the overall linked list. More...
#include <pm_list.h>
Data Fields | |
size_t | size |
The size of the list. More... | |
pm_list_node_t * | head |
A pointer to the head of the list. More... | |
pm_list_node_t * | tail |
A pointer to the tail of the list. More... | |
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.
pm_list_node_t* pm_list_t::head |
A pointer to the head of the list.
Definition at line 60 of file pm_list.h.
Referenced by pm_diagnostic_list_free(), pm_list_append(), pm_list_empty_p(), pm_list_free(), and pm_serialize_comment_list().
size_t pm_list_t::size |
The size of the list.
Definition at line 57 of file pm_list.h.
Referenced by pm_list_append(), pm_list_free(), pm_list_size(), pm_parse_stream(), and pm_parse_success_p().
pm_list_node_t* pm_list_t::tail |
A pointer to the tail of the list.
Definition at line 63 of file pm_list.h.
Referenced by pm_list_append().