| 107 | inline Row row( int i ){ return Row( *this, i ) ; } |
| 108 | inline ConstRow row( int i ) const{ return ConstRow( *this, i ) ; } |
| 109 | inline Column column( int i ){ return Column(*this, i ) ; } |
| 110 | inline ConstColumn column( int i ) const{ return ConstColumn( *this, i ) ; } |
| 111 | |
| 112 | inline const_iterator begin() const{ return VECTOR::begin() ; } |
no outgoing calls
no test coverage detected