42 inline typename PB_DS_CLASS_C_DEC::iterator
 
   45 { 
return iterator(m_a_entries); }
 
   48 inline typename PB_DS_CLASS_C_DEC::const_iterator
 
   51 { 
return const_iterator(m_a_entries); }
 
   54 inline typename PB_DS_CLASS_C_DEC::iterator
 
   57 { 
return iterator(m_a_entries + m_size); }
 
   60 inline typename PB_DS_CLASS_C_DEC::const_iterator
 
   63 { 
return const_iterator(m_a_entries + m_size); }
 
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.