MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / BPlusTree_traverse

Function BPlusTree_traverse

python/bplustree_c_src/bplustree_module.c:373–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

371
372
373static int
374BPlusTree_traverse(BPlusTree *self, visitproc visit, void *arg) {
375 if (self->root) {
376 if (node_traverse(self->root, visit, arg) != 0) {
377 return -1;
378 }
379 }
380 return 0;
381}
382
383
384static int

Callers

nothing calls this directly

Calls 1

node_traverseFunction · 0.85

Tested by

no test coverage detected