This class is a link in a chain that each caches tree nodes of a specific type in a linear array.  
 More...
 | 
|   | DynamicNodeManagerLink ()=default | 
|   | 
| template<typename NodeOpT , typename RootT >  | 
| void  | foreachTopDown (const NodeOpT &op, RootT &root, bool threaded, size_t leafGrainSize, size_t nonLeafGrainSize) | 
|   | 
| template<typename FilterOpT , typename ParentT >  | 
| void  | foreachTopDownRecurse (const FilterOpT &filterOp, ParentT &parent, bool threaded, size_t leafGrainSize, size_t nonLeafGrainSize) | 
|   | 
| template<typename NodeOpT , typename RootT >  | 
| void  | reduceTopDown (NodeOpT &op, RootT &root, bool threaded, size_t leafGrainSize, size_t nonLeafGrainSize) | 
|   | 
| template<typename FilterOpT , typename ParentT >  | 
| void  | reduceTopDownRecurse (FilterOpT &filterOp, ParentT &parent, bool threaded, size_t leafGrainSize, size_t nonLeafGrainSize) | 
|   | 
template<typename NodeT, Index LEVEL>
class openvdb::v13_0::tree::DynamicNodeManagerLink< NodeT, LEVEL >
This class is a link in a chain that each caches tree nodes of a specific type in a linear array. 
- Note
 - It is for internal use and should rarely be used directly.