|
cbase 1.50.0
C/C++ Static Template
|
A node for building singly-linked lists of strings. More...
#include <base_strings.h>

Public Attributes | |
| struct String8Node * | next |
| String8 | string |
A node for building singly-linked lists of strings.
Used internally by StringBuilders to accumulate segments without contiguous reallocation. Each node is a non-owning view into some backing buffer - it does not copy string data.
Definition at line 69 of file base_strings.h.
| struct String8Node* String8Node::next |
Pointer to the next node, or NULL if last.
Definition at line 70 of file base_strings.h.
| String8 String8Node::string |
The string slice payload.
Definition at line 71 of file base_strings.h.