Guest User

Untitled

a guest
Jul 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. template< typename Type_, long int Rows_, long int Columns_ >
  2. inline const Type_& Matrix< Type_, Rows_, Columns_ >::operator[]( long int rhs ) const
  3. {
  4. return &( *( *this->matrix ) )[ rhs ];
  5. }
  6.  
  7. template< typename Type_, long int Rows_, long int Columns_ >
  8. inline Type_& Matrix< Type_, Rows_, Columns_ >::operator[]( long int rhs )
  9. {
  10. return &( *( *this->matrix ) )[ rhs ];
  11. }
Add Comment
Please, Sign In to add comment