lin
mapping.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TYPES_MAPPING_HPP_
8 #define LIN_CORE_TYPES_MAPPING_HPP_
9 
10 #include "../config.hpp"
11 #include "../traits.hpp"
12 #include "stream.hpp"
13 
14 #include <initializer_list>
15 #include <type_traits>
16 #include <utility>
17 
18 namespace lin {
19 namespace internal {
20 
38 template <class D>
39 class Mapping : public Stream<D> {
40  static_assert(has_valid_traits<D>::value,
41  "Derived types to Mapping<...> must have valid traits");
42 
43  private:
44  template <typename T, typename U>
45  using assign_expr = decltype(std::declval<T &>() = std::declval<U &>());
46 
47  public:
52  typedef traits<D> Traits;
53 
54  protected:
55  using Stream<D>::derived;
56 
57  public:
58  using Stream<D>::rows;
59  using Stream<D>::cols;
60  using Stream<D>::size;
61  using Stream<D>::eval;
62 
63  constexpr Mapping() = default;
64  constexpr Mapping(Mapping<D> const &) = default;
65  constexpr Mapping(Mapping<D> &&) = default;
66  constexpr Mapping<D> &operator=(Mapping<D> const &) = default;
67  constexpr Mapping<D> &operator=(Mapping<D> &&) = default;
68 
76  inline constexpr typename Traits::elem_t &operator()(size_t i, size_t j) {
77  return derived()(i, j);
78  }
79 
92  inline constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
93  return const_cast<D &>(derived())(i, j);
94  }
95 
105  inline constexpr typename Traits::elem_t &operator()(size_t i) {
106  return derived()(i);
107  }
108 
118  inline constexpr typename Traits::elem_t operator()(size_t i) const {
119  return const_cast<D &>(derived())(i);
120  }
121 
131  inline constexpr typename Traits::elem_t &operator[](size_t i) {
132  return derived()(i);
133  }
134 
144  inline constexpr typename Traits::elem_t operator[](size_t i) const {
145  return const_cast<D &>(derived())(i);
146  }
147 
159  template <typename T, std::enable_if_t<
161  constexpr D &operator=(std::initializer_list<T> const &list) {
162  LIN_ASSERT(size() == list.size());
163 
164  size_t i = 0;
165  for (T const &l : list) (*this)(i++) = l;
166  return derived();
167  }
168 
184  template <class C, std::enable_if_t<conjunction<
187  >::value, size_t> = 0>
188  constexpr D &operator=(Stream<C> const &s) {
189  LIN_ASSERT(rows() == s.rows());
190  LIN_ASSERT(cols() == s.cols());
191 
192  for (size_t i = 0; i < size(); i++) (*this)(i) = s(i);
193  return derived();
194  }
195 };
196 } // namespace internal
197 } // namespace lin
198 
199 #endif
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&#39;s elements into the tensor&#39;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&#39;s elements into this tenosr&#39;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&#39;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&#39;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