* Specifies that the iteration will be over all the directories in the * tree rooted at `root_`. * * @param walk_order The walk order. */
| 138 | * @param walk_order The walk order. |
| 139 | */ |
| 140 | void set_recursive(tiledb_walk_order_t walk_order = TILEDB_PREORDER) { |
| 141 | recursive_ = true; |
| 142 | walk_order_ = walk_order; |
| 143 | } |
| 144 | |
| 145 | /** Disables recursive traversal. */ |
| 146 | void set_non_recursive() { |