Function first_child
Summary
#include <src/c4/yml/node.hpp>
(1) NodeRef first_child()
(2) NodeRef const first_child() const
Function overload
Synopsis
#include <src/c4/yml/node.hpp>
NodeRef first_child()
Description
No description yet.
Source
Lines 214-214 in src/c4/yml/node.hpp.
NodeRef first_child() { _C4RV(); return {m_tree, m_tree->first_child(m_id)}; }
Synopsis
#include <src/c4/yml/node.hpp>
NodeRef const first_child() const
Description
No description yet.
Source
Lines 215-215 in src/c4/yml/node.hpp.
NodeRef const first_child() const { _C4RV(); return {m_tree, m_tree->first_child(m_id)}; }