* @brief Reduce capacity to match current size */
| 204 | * @brief Reduce capacity to match current size |
| 205 | */ |
| 206 | void trimToSize() |
| 207 | { |
| 208 | if(_size < _data.size) { |
| 209 | _data.trim(_size, true); |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | const Element& elementAt(unsigned int index) const |
| 214 | { |