Function remove
Synopsis
#include <src/c4/yml/tree.hpp>
void remove(size_t node)
Description
remove an entire branch at once: ie remove the children and the node itself
Source
Lines 785-789 in src/c4/yml/tree.hpp.
inline void remove(size_t node)
{
remove_children(node);
_release(node);
}