#include <alps/type_traits/is_sequence.hpp>
#include <alps/utilities/stacktrace.hpp>
#include <boost/array.hpp>
#include <type_traits>
#include <vector>
#include <stdexcept>
#include <algorithm>
Go to the source code of this file.
|
template<typename T , typename U > |
void | alps::numeric::check_size (T &, U const &) |
|
template<typename T , typename U > |
void | alps::numeric::check_size (std::vector< T > &a, std::vector< U > const &b) |
|
template<typename T , typename U , std::size_t N, std::size_t M> |
void | alps::numeric::check_size (boost::array< T, N > &a, boost::array< U, M > const &b) |
|
template<typename T , typename U , std::size_t N> |
void | alps::numeric::check_size (boost::array< T, N > &a, boost::array< U, N > const &b) |
|