| 233 | #define RAX_DEFRAG_F_COMPRESSED (1<<2) |
| 234 | #define RAX_DEFRAG_F_INLINE_DATA (1<<3) |
| 235 | typedef struct raxDefragFrame { |
| 236 | raxNode *node; /* Current node at this stack level. */ |
| 237 | size_t child; /* Next child to scan. */ |
| 238 | int parent_child; /* This node child index in the parent, or -1. */ |
| 239 | int state; /* Internal iterator state. */ |
| 240 | } raxDefragFrame; |
| 241 | |
| 242 | typedef struct raxDefragIterator { |
| 243 | /* The following fields describe the current item returned by the |
nothing calls this directly
no outgoing calls
no test coverage detected