35 #ifndef _BLAZE_MATH_INITIALIZERLIST_H_
36 #define _BLAZE_MATH_INITIALIZERLIST_H_
43 #include <initializer_list>
60 using std::initializer_list;
79 template<
typename Type >
83 for(
const auto& rowList : list )
84 cols =
max( cols, rowList.size() );
Header file for mathematical functions.
const ElementType_< MT > max(const DenseMatrix< MT, SO > &dm)
Returns the largest element of the dense matrix.
Definition: DenseMatrix.h:1716
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
size_t determineColumns(initializer_list< initializer_list< Type > > list) noexcept
Determine the maximum number of columns specified by the given initializer list.
Definition: InitializerList.h:80
Initializer list type of the Blaze library.