lin
diagonal.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_GENERATORS_DIAGONAL_HPP_
8 #define LIN_GENERATORS_DIAGONAL_HPP_
9 
10 #include "stream_diagonal.hpp"
11 #include "../core.hpp"
12 
13 #include <limits>
14 #include <type_traits>
15 
16 namespace lin {
17 
28 template <class D, typename std::enable_if_t<internal::is_vector<D>::value, size_t> = 0>
29 constexpr auto diag(internal::Stream<D> const &stream) {
30  return internal::StreamDiagonal<D>(stream);
31 }
32 } // namespace lin
33 
34 #endif
Definition: config.hpp:27
constexpr auto diag(internal::Mapping< D > &mapping)
Creates a diagonal mapping reference from the given mapping.
Definition: references.hpp:359