! \brief Subscript access to the data contained in this iterator. * \param n The index of the element for which data should be accessed. * \return Read/write reference to data. * * This operator allows for easy, array-style, data access. * Note that data access with this operator is unchecked and * out_of_range lookups are not defined. */
| 221 | * out_of_range lookups are not defined. |
| 222 | */ |
| 223 | reference operator[](size_type n) const |
| 224 | { |
| 225 | return *(begin() + n); |
| 226 | } |
| 227 | |
| 228 | protected: |
| 229 |
nothing calls this directly
no outgoing calls
no test coverage detected