44 erase(key_const_reference r_key)
 
   46   point_iterator it = find(r_key);
 
   54 inline typename PB_DS_CLASS_C_DEC::iterator
 
   58   PB_DS_ASSERT_VALID((*
this))
 
   59   if (it == base_type::
end())
 
   63   erase_node(it.m_p_nd);
 
   64   PB_DS_ASSERT_VALID((*this))
 
   69 inline typename PB_DS_CLASS_C_DEC::reverse_iterator
 
   71 erase(reverse_iterator it)
 
   73   PB_DS_ASSERT_VALID((*
this))
 
   74   if (it.m_p_nd == base_type::m_p_head)
 
   76   reverse_iterator ret_it = it;
 
   78   erase_node(it.m_p_nd);
 
   79   PB_DS_ASSERT_VALID((*this))
 
   84 template<typename Pred>
 
   85 inline typename PB_DS_CLASS_C_DEC::size_type
 
   89   PB_DS_ASSERT_VALID((*
this))
 
   90   size_type num_ersd = 0;
 
   91   iterator it = base_type::
begin();
 
   92   while (it != base_type::
end())
 
  102   PB_DS_ASSERT_VALID((*
this))
 
  109 erase_node(node_pointer p_nd)
 
  111   _GLIBCXX_DEBUG_ASSERT(p_nd != 0);
 
  114   PB_DS_ASSERT_VALID((*
this))
 
  115   _GLIBCXX_DEBUG_ASSERT(p_nd == this->m_p_head->m_p_parent);
 
  117   node_pointer p_l = p_nd->m_p_left;
 
  118   node_pointer p_r = p_nd->m_p_right;
 
  120   base_type::update_min_max_for_erased_node(p_nd);
 
  121   base_type::actual_erase_node(p_nd);
 
  124       base_type::m_p_head->m_p_parent = p_l;
 
  126     p_l->m_p_parent = base_type::m_p_head;
 
  127       PB_DS_ASSERT_VALID((*
this))
 
  131   node_pointer p_target_r = leftmost(p_r);
 
  132   _GLIBCXX_DEBUG_ASSERT(p_target_r != 0);
 
  133   p_r->m_p_parent = base_type::m_p_head;
 
  134   base_type::m_p_head->m_p_parent = p_r;
 
  137   _GLIBCXX_DEBUG_ONLY(p_target_r->m_p_left = 0);
 
  138   _GLIBCXX_DEBUG_ASSERT(p_target_r->m_p_parent == this->m_p_head);
 
  139   _GLIBCXX_DEBUG_ASSERT(this->m_p_head->m_p_parent == p_target_r);
 
  141   p_target_r->m_p_left = p_l;
 
  143     p_l->m_p_parent = p_target_r;
 
  144   PB_DS_ASSERT_VALID((*this))
 
  145   this->apply_update(p_target_r, (node_update*)this);
 
  149 inline typename PB_DS_CLASS_C_DEC::node_pointer
 
  151 leftmost(node_pointer p_nd)
 
  153   _GLIBCXX_DEBUG_ASSERT(p_nd != 0);
 
  154   while (p_nd->m_p_left != 0)
 
  155     p_nd = p_nd->m_p_left;
 
auto end(_Container &__cont) -> decltype(__cont.end())
Return an iterator pointing to one past the last element of the container. 
auto begin(_Container &__cont) -> decltype(__cont.begin())
Return an iterator pointing to the first element of the container.