Struct NodeData
Synopsis
#include <src/c4/yml/tree.hpp>
struct NodeData
Description
contains the data for each YAML node.
Source
Lines 401-413 in src/c4/yml/tree.hpp.
struct NodeData
{
NodeType m_type;
NodeScalar m_key;
NodeScalar m_val;
size_t m_parent;
size_t m_first_child;
size_t m_last_child;
size_t m_next_sibling;
size_t m_prev_sibling;
};