const_reverse_iterator rbegin() const | Reversible Container | Returns a const_reverse_iterator pointing to the beginning of the reversed rope |
const_reverse_iterator rend() const | Reversible Container | Returns a const_reverse_iterator pointing to the end of the reversed rope |
iterator mutable_rbegin() | rope | Returns a reverse_iterator pointing to the beginning of the reversed rope. |
iterator mutable_rend() | rope | Returns a reverse_iterator pointing to the end of the reversed rope. |
charT operator[](size_type n) const | Random Access | Container Returns the n'th element. |
charT at(size_type pos) const | Random Access | Container Returns the n'th element. |
reference mutable_reference_at(size_type n) | rope | Returns a reference to the n th element. |
int compare(const rope&) const | rope | Three-way comparison. See below. |
charT front() const | Sequence | Returns the first element. |
charT back() const | Back Insertion Sequence | Returns the last element. |
void push_front() | Front Insertion Sequence | Inserts a new element at the front. |
void push_back(charT) | Back Insertion Sequence | Inserts a new element at the end. |
void pop_front() | Front Insertion Sequence | Removes the first element. |
void pop_back() | Back Insertion Sequence | Removes the last element. |
iterator insert(const iterator& p, const rope& x) | rope | Inserts the contents of x before p. |
iterator insert(const iterator& p, charT c) | Sequence | Inserts c before p. |
iterator insert(const iterator& p) | Sequence | Inserts charT() before p. |
iterator insert(const iterator& p, size_t n, charT c) | Sequence | Inserts n copies of c before p. |