41#ifdef PB_DS_CLASS_C_DEC
44typename PB_DS_CLASS_C_DEC::node_allocator
45PB_DS_CLASS_C_DEC::s_node_allocator;
48typename PB_DS_CLASS_C_DEC::no_throw_copies_t
49PB_DS_CLASS_C_DEC::s_no_throw_copies_ind;
53left_child_next_sibling_heap() :
57 PB_DS_ASSERT_VALID((*
this))
62left_child_next_sibling_heap(
const Cmp_Fn& r_cmp_fn) :
67 PB_DS_ASSERT_VALID((*
this))
72left_child_next_sibling_heap(
const PB_DS_CLASS_C_DEC& other)
73: Cmp_Fn(other), m_p_root(0), m_size(0)
75 m_size = other.m_size;
76 PB_DS_ASSERT_VALID(other)
77 m_p_root = recursive_copy_node(other.m_p_root);
78 m_size = other.m_size;
79 PB_DS_ASSERT_VALID((*
this))
85swap(PB_DS_CLASS_C_DEC& other)
87 PB_DS_ASSERT_VALID((*
this))
88 PB_DS_ASSERT_VALID(other)
90 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other);
91 PB_DS_ASSERT_VALID((*this))
92 PB_DS_ASSERT_VALID(other)
98value_swap(PB_DS_CLASS_C_DEC& other)
106~left_child_next_sibling_heap()
112typename PB_DS_CLASS_C_DEC::node_pointer
114recursive_copy_node(node_const_pointer p_nd)
119 node_pointer p_ret = s_node_allocator.allocate(1);
123 new (p_ret) node(*p_nd);
127 s_node_allocator.deallocate(p_ret, 1);
128 __throw_exception_again;
131 p_ret->m_p_l_child = p_ret->m_p_next_sibling =
132 p_ret->m_p_prev_or_parent = 0;
136 p_ret->m_p_l_child = recursive_copy_node(p_nd->m_p_l_child);
137 p_ret->m_p_next_sibling = recursive_copy_node(p_nd->m_p_next_sibling);
142 __throw_exception_again;
145 if (p_ret->m_p_l_child != 0)
146 p_ret->m_p_l_child->m_p_prev_or_parent = p_ret;
148 if (p_ret->m_p_next_sibling != 0)
149 p_ret->m_p_next_sibling->m_p_prev_or_parent =
150 p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd ? p_ret : 0;
void swap(any &__x, any &__y) noexcept
Exchange the states of two any objects.
ISO C++ entities toplevel namespace is std.