| 189 | } |
| 190 | |
| 191 | inline const_iterator cbegin() const { |
| 192 | return const_iterator( const_cast<MatrixRow&>(*this), 0 ) ; |
| 193 | } |
| 194 | |
| 195 | inline const_iterator cend() const { |
| 196 | return const_iterator( const_cast<MatrixRow&>(*this), size() ) ; |
nothing calls this directly
no test coverage detected