35 #ifndef _BLAZE_MATH_VIEWS_BAND_BANDDATA_H_ 36 #define _BLAZE_MATH_VIEWS_BAND_BANDDATA_H_ 63 template< ptrdiff_t... CBAs >
92 template<
typename... RBAs >
117 inline
size_t row () const noexcept;
118 inline
size_t column() const noexcept;
128 const
size_t column_;
143 template< typename... RBAs >
146 , row_ ( index >= 0L ? 0UL : -index )
147 , column_( index >= 0L ? index : 0UL )
213 template< ptrdiff_t I >
220 template<
typename... RBAs >
221 explicit inline BandData( RBAs... args );
223 BandData(
const BandData& ) =
default;
230 ~BandData() =
default;
237 BandData& operator=(
const BandData& ) =
delete;
244 static inline constexpr ptrdiff_t
band () noexcept;
245 static inline constexpr
size_t row () noexcept;
246 static inline constexpr
size_t column() noexcept;
260 template< ptrdiff_t I >
261 template< typename... RBAs >
262 inline BandData<I>::BandData( RBAs... args )
276 template< ptrdiff_t I >
291 template< ptrdiff_t I >
294 return ( I >= 0L ? 0UL : -I );
306 template< ptrdiff_t I >
309 return ( I >= 0L ? I : 0UL );
Pointer difference type of the Blaze library.
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.
constexpr void UNUSED_PARAMETER(const Args &...)
Suppression of unused parameter warnings.
Definition: Unused.h:81
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
decltype(auto) band(Matrix< MT, SO > &matrix, RBAs... args)
Creating a view on a specific band of the given matrix.
Definition: Band.h:135
decltype(auto) row(Matrix< MT, SO > &, RRAs...)
Creating a view on a specific row of the given matrix.
Definition: Row.h:133
Auxiliary class template for the data members of the Band class.The auxiliary BandData class template...
Definition: BandData.h:64