| 55 | |
| 56 | /* Links */ |
| 57 | struct BPlusNode *next; /* Next leaf (for leaf nodes only) */ |
| 58 | |
| 59 | /* Flexible array for keys and values/children (cache-line aligned) */ |
| 60 | /* Actual size allocated: capacity * 2 * sizeof(PyObject*) for leaves */ |
nothing calls this directly
no outgoing calls
no test coverage detected