35 #ifndef _BLAZE_MATH_VIEWS_SUBMATRIX_SUBMATRIXDATA_H_ 36 #define _BLAZE_MATH_VIEWS_SUBMATRIX_SUBMATRIXDATA_H_ 63 template<
size_t... CSAs >
96 static constexpr
bool compileTimeArgs =
false;
102 template<
typename... RSAs >
103 explicit inline SubmatrixData(
size_t rindex,
size_t cindex,
size_t m,
size_t n, RSAs... args );
126 inline size_t row () const noexcept;
127 inline
size_t column () const noexcept;
128 inline
size_t rows () const noexcept;
129 inline
size_t columns() const noexcept;
138 const
size_t column_;
158 template< typename... RSAs >
248 class SubmatrixData<I,J,M,N>
257 static constexpr
bool compileTimeArgs =
true;
263 template<
typename... RSAs >
264 explicit inline SubmatrixData( RSAs... args );
266 SubmatrixData(
const SubmatrixData& ) =
default;
273 ~SubmatrixData() =
default;
280 SubmatrixData& operator=(
const SubmatrixData& ) =
delete;
287 static inline constexpr
size_t row () noexcept;
288 static inline constexpr
size_t column () noexcept;
289 static inline constexpr
size_t rows () noexcept;
290 static inline constexpr
size_t columns() noexcept;
308 template< typename... RSAs >
309 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 basic type definitions.
Header file for the MAYBE_UNUSED function template.
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
constexpr void MAYBE_UNUSED(const Args &...)
Suppression of unused parameter warnings.
Definition: MaybeUnused.h:81
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
Auxiliary class template for the data members of the Submatrix class.The auxiliary SubmatrixData clas...
Definition: SubmatrixData.h:64