| 371 | |
| 372 | |
| 373 | static int |
| 374 | BPlusTree_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 | |
| 384 | static int |
nothing calls this directly
no test coverage detected