git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55690
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
/**
Returns the last item of the list.
*/
/**
Returns the last item of the list.
*/
- reference back() const;
/**
Returns the last item of the list as a const reference.
/**
Returns the last item of the list as a const reference.
/**
Returns an iterator pointing to the beginning of the list.
*/
/**
Returns an iterator pointing to the beginning of the list.
*/
- iterator begin() const;
/**
Returns a const iterator pointing to the beginning of the list.
/**
Returns a const iterator pointing to the beginning of the list.
/**
Adds an item to end of the list.
*/
/**
Adds an item to end of the list.
*/
+ void push_back(const_reference v = value_type());
/**
Adds an item to the front of the list.
*/
/**
Adds an item to the front of the list.
*/
+ void push_front(const_reference v = value_type());
/**
Returns a reverse iterator pointing to the beginning of the
reversed list.
*/
/**
Returns a reverse iterator pointing to the beginning of the
reversed list.
*/
- reverse_iterator rbegin() const;
+ reverse_iterator rbegin();
/**
Returns a const reverse iterator pointing to the beginning of the
/**
Returns a const reverse iterator pointing to the beginning of the
Returns a reverse iterator pointing to the end of the
reversed list.
*/
Returns a reverse iterator pointing to the end of the
reversed list.
*/
- reverse_iterator rend() const;
+ reverse_iterator rend();
/**
Returns a const reverse iterator pointing to the end of the
/**
Returns a const reverse iterator pointing to the end of the