* @brief Returns an iterator pointing to the beginning of the container. * @return An iterator pointing to the beginning of the container. */
| 278 | * @return An iterator pointing to the beginning of the container. |
| 279 | */ |
| 280 | iterator begin() |
| 281 | { |
| 282 | return iterator( mData.begin() ); |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * @brief Returns a constant iterator pointing to the beginning of the container. |
no test coverage detected