@brief Return a non-const iterator pointing to the past-the-last element. @warning Iterator does not point to a valid element and should not be dereferenced!
| 384 | /// @warning Iterator does not point to a valid element and should not |
| 385 | /// be dereferenced! |
| 386 | Iterator end() { return Iterator(*this, mSize); } |
| 387 | |
| 388 | /// @brief Return a const iterator pointing to the first element |
| 389 | ConstIterator cbegin() const { return ConstIterator(*this, 0); } |
no test coverage detected