7 #ifndef LIN_CORE_TYPES_MAPPING_HPP_ 8 #define LIN_CORE_TYPES_MAPPING_HPP_ 10 #include "../config.hpp" 11 #include "../traits.hpp" 14 #include <initializer_list> 15 #include <type_traits> 41 "Derived types to Mapping<...> must have valid traits");
44 template <
typename T,
typename U>
45 using assign_expr = decltype(std::declval<T &>() = std::declval<U &>());
93 return const_cast<D &
>(
derived())(i, j);
119 return const_cast<D &
>(
derived())(i);
145 return const_cast<D &
>(
derived())(i);
159 template <
typename T, std::enable_if_t<
161 constexpr D &
operator=(std::initializer_list<T>
const &list) {
165 for (T
const &l : list) (*this)(i++) = l;
187 >::value,
size_t> = 0>
192 for (
size_t i = 0; i <
size(); i++) (*
this)(i) = s(i);
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Provides read and write access to tensor elements.
Definition: mapping.hpp:76
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr Traits::elem_t & operator()(size_t i)
Provides read and write access to tensor elements.
Definition: mapping.hpp:105
constexpr Traits::elem_t & operator[](size_t i)
Provides read and write access to tensor elements.
Definition: mapping.hpp:131
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr size_t size() const
Definition: stream.hpp:90
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: mapping.hpp:92
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
constexpr D & operator=(std::initializer_list< T > const &list)
Copy an initializer list's elements into the tensor's elements.
Definition: mapping.hpp:161
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Tests if a given expression can be instantiated.
Definition: utilities.hpp:44
Tests if a set of tensor types all have the same dimensions.
Definition: tensor.hpp:525
constexpr D & operator=(Stream< C > const &s)
Copy another tensor's elements into this tenosr's elements.
Definition: mapping.hpp:188
constexpr size_t rows() const
Definition: stream.hpp:76
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
traits< D > Traits
Traits information for this type.
Definition: mapping.hpp:52
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
constexpr Traits::elem_t operator[](size_t i) const
Provides read only access to tensor elements.
Definition: mapping.hpp:144
Tests if a tensor type's traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
constexpr Traits::elem_t operator()(size_t i) const
Provides read only access to tensor elements.
Definition: mapping.hpp:118