Function has_other_siblings
Synopsis
#include <src/c4/yml/tree.hpp>
bool has_other_siblings(size_t node) const
Description
does not count with *this
Source
Lines 634-634 in src/c4/yml/tree.hpp.
bool has_other_siblings(size_t node) const { return is_root(node) ? false : (_p(_p(node)->m_parent)->m_first_child != _p(_p(node)->m_parent)->m_last_child); }