35 #ifndef _BLAZE_MATH_VIEWS_SUBMATRIX_SUBMATRIXDATA_H_ 36 #define _BLAZE_MATH_VIEWS_SUBMATRIX_SUBMATRIXDATA_H_ 63 template<
size_t... CSAs >
93 template<
typename... RSAs >
94 explicit inline SubmatrixData(
size_t rindex,
size_t cindex,
size_t m,
size_t n, RSAs... args );
117 inline size_t row () const noexcept;
118 inline
size_t column () const noexcept;
119 inline
size_t rows () const noexcept;
120 inline
size_t columns() const noexcept;
129 const
size_t column_;
149 template< typename... RSAs >
239 struct SubmatrixData<I,J,M,N>
245 template<
typename... RSAs >
246 explicit inline SubmatrixData( RSAs... args );
248 SubmatrixData(
const SubmatrixData& ) =
default;
255 ~SubmatrixData() =
default;
262 SubmatrixData& operator=(
const SubmatrixData& ) =
delete;
269 static inline constexpr
size_t row () noexcept;
270 static inline constexpr
size_t column () noexcept;
271 static inline constexpr
size_t rows () noexcept;
272 static inline constexpr
size_t columns() noexcept;
290 template< typename... RSAs >
291 inline SubmatrixData<I,J,M,N>::SubmatrixData( RSAs... args )
decltype(auto) column(Matrix< MT, SO > &matrix, RCAs... args)
Creating a view on a specific column of the given matrix.
Definition: Column.h:133
Header file for the UNUSED_PARAMETER function template.
Header file for basic type definitions.
size_t m_
The current number of rows of the compressed matrix.
Definition: CompressedMatrix.h:3289
constexpr void UNUSED_PARAMETER(const Args &...)
Suppression of unused parameter warnings.
Definition: Unused.h:81
constexpr size_t columns(const Matrix< MT, SO > &matrix) noexcept
Returns the current number of columns of the matrix.
Definition: Matrix.h:514
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
decltype(auto) row(Matrix< MT, SO > &, RRAs...)
Creating a view on a specific row of the given matrix.
Definition: Row.h:133
constexpr size_t rows(const Matrix< MT, SO > &matrix) noexcept
Returns the current number of rows of the matrix.
Definition: Matrix.h:498
size_t n_
The current number of columns of the compressed matrix.
Definition: CompressedMatrix.h:3290
Auxiliary class template for the data members of the Submatrix class.The auxiliary SubmatrixData clas...
Definition: SubmatrixData.h:64