| 230 | } |
| 231 | |
| 232 | void assign(const_iterator begin, const_iterator end) FL_NOEXCEPT { |
| 233 | clear(); |
| 234 | for (const_iterator it = begin; it != end; ++it) { |
| 235 | push_back(*it); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | // Remove the last element from the vector |
| 240 | void pop_back() FL_NOEXCEPT { |