| Ruby 3.5.0dev (2025-10-31 revision f8b4feb7f0de477bebb40966f80dcd9aabd3b06a)
    | 
This represents the overall linked list. More...
#include <pm_list.h>
| Public Member Functions | |
| PRISM_EXPORTED_FUNCTION bool | pm_list_empty_p (pm_list_t *list) | 
| Returns true if the given list is empty. | |
| PRISM_EXPORTED_FUNCTION size_t | pm_list_size (pm_list_t *list) | 
| Returns the size of the list. | |
| PRISM_EXPORTED_FUNCTION void | pm_list_free (pm_list_t *list) | 
| Deallocate the internal state of the given list. | |
| 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.
| PRISM_EXPORTED_FUNCTION bool pm_list_empty_p | ( | pm_list_t * | list | ) | 
| PRISM_EXPORTED_FUNCTION void pm_list_free | ( | pm_list_t * | list | ) | 
| PRISM_EXPORTED_FUNCTION size_t pm_list_size | ( | pm_list_t * | list | ) | 
| 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_parser::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().