iterator support
| 202 | |
| 203 | // iterator support |
| 204 | iterator begin() { return iterator( reinterpret_cast< T * >( this ) ); } |
| 205 | const_iterator begin() const { return const_iterator( reinterpret_cast< const T * >( this ) ); } |
| 206 | const_iterator cbegin() const { return const_iterator( reinterpret_cast< const T * >( this ) ); } |
| 207 |
nothing calls this directly
no test coverage detected