lin
const_vector_view.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_VIEWS_CONST_VECTOR_VIEW_HPP_
8 #define LIN_VIEWS_CONST_VECTOR_VIEW_HPP_
9 
10 #include "../core.hpp"
11 #include "const_tensor_view.hpp"
12 
13 namespace lin {
14 namespace internal {
15 
30 template <typename T, size_t N, size_t MN = N>
31 class ConstVectorView : public ConstTensorView<ConstVectorView<T, N, MN>> {
32  static_assert(is_col_vector<ConstVectorView<T, N, MN>>::value,
33  "Invalid ConstVectorView<...> parameters");
34 
35  public:
41 
47 
48  protected:
50 
51  public:
60 
61  constexpr ConstVectorView() = delete;
62  constexpr ConstVectorView(ConstVectorView<T, N, MN> const &) = default;
63  constexpr ConstVectorView(ConstVectorView<T, N, MN> &&) = default;
64  constexpr ConstVectorView<T, N, MN> &operator=(ConstVectorView<T, N, MN> const &) = default;
65  constexpr ConstVectorView<T, N, MN> &operator=(ConstVectorView<T, N, MN> &&) = default;
66 
82  constexpr ConstVectorView(typename Traits::elem_t const *elems, size_t n)
83  : ConstTensorView<ConstVectorView<T, N, MN>>(elems, n, 1) { }
84 
95  constexpr void resize(size_t n) {
96  resize(n, 1);
97  }
98 };
99 
114 template <typename T, size_t N, size_t MN = N>
115 class ConstRowVectorView : public ConstTensorView<ConstRowVectorView<T, N, MN>> {
116  static_assert(is_row_vector<ConstRowVectorView<T, N, MN>>::value,
117  "Invalid ConstRowVectorView<...> parameters");
118 
119  public:
125 
131 
132  protected:
134 
135  public:
145 
146  constexpr ConstRowVectorView() = default;
147  constexpr ConstRowVectorView(ConstRowVectorView<T, N, MN> const &) = default;
148  constexpr ConstRowVectorView(ConstRowVectorView<T, N, MN> &&) = default;
149  constexpr ConstRowVectorView<T, N, MN> &operator=(ConstRowVectorView<T, N, MN> const &) = default;
150  constexpr ConstRowVectorView<T, N, MN> &operator=(ConstRowVectorView<T, N, MN> &&) = default;
151 
167  constexpr ConstRowVectorView(typename Traits::elem_t const *elems, size_t n)
168  : ConstTensorView<ConstRowVectorView<T, N, MN>>(elems, 1, n) { }
169 
180  constexpr void resize(size_t n) {
181  resize(1, n);
182  }
183 };
184 
185 template <typename T, size_t N, size_t MN>
186 struct _elem<ConstVectorView<T, N, MN>> {
187  typedef T type;
188 };
189 
190 template <typename T, size_t N, size_t MN>
191 struct _dims<ConstVectorView<T, N, MN>> {
192  static constexpr size_t rows = N;
193  static constexpr size_t cols = 1;
194  static constexpr size_t max_rows = MN;
195  static constexpr size_t max_cols = 1;
196 };
197 
198 template <typename T, size_t N, size_t MN>
199 struct _elem<ConstRowVectorView<T, N, MN>> {
200  typedef T type;
201 };
202 
203 template <typename T, size_t N, size_t MN>
204 struct _dims<ConstRowVectorView<T, N, MN>> {
205  static constexpr size_t rows = 1;
206  static constexpr size_t cols = N;
207  static constexpr size_t max_rows = 1;
208  static constexpr size_t max_cols = MN;
209 };
210 } // namespace internal
211 } // namespace lin
212 
213 #endif
constexpr void resize(size_t n)
Resizes the row vector view&#39;s length.
Definition: const_vector_view.hpp:180
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
constexpr size_t size() const
Definition: stream.hpp:90
vector_traits< ConstRowVectorView< T, N, MN > > VectorTraits
Vector traits information for this type.
Definition: const_vector_view.hpp:130
traits< ConstVectorView< T, N, MN > > Traits
Traits information for this type.
Definition: const_vector_view.hpp:33
Provides a tensor type&#39;s element type.
Definition: tensor.hpp:28
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr ConstVectorView< T, N, MN > & derived()
Definition: stream.hpp:57
constexpr ConstRowVectorView(typename Traits::elem_t const *elems, size_t n)
Constructs a vector view with the provided backing array and requested length.
Definition: const_vector_view.hpp:167
Member pointer backed constant tensor.
Definition: const_tensor_view.hpp:31
Generic constant row vector view.
Definition: const_vector_view.hpp:115
constexpr ConstVectorView(typename Traits::elem_t const *elems, size_t n)
Constructs a constant vector view with the provided backing array and requested length.
Definition: const_vector_view.hpp:82
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr void resize(size_t n)
Resizes the constant vector view&#39;s length.
Definition: const_vector_view.hpp:95
vector_traits< ConstVectorView< T, N, MN > > VectorTraits
Vector traits information for this type.
Definition: const_vector_view.hpp:46
traits< ConstRowVectorView< T, N, MN > > Traits
Traits information for this type.
Definition: const_vector_view.hpp:117
constexpr size_t cols() const
Definition: stream.hpp:82
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
_elem_t< C > elem_t
Tensor&#39;s element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
Generic constant vector view.
Definition: const_vector_view.hpp:31
Tests if a tensor type is a row vector.
Definition: vector.hpp:33
Provides a specific tensor type&#39;s compile time dimensions.
Definition: tensor.hpp:60
constexpr Traits::elem_t const * data() const
Retrives a constant pointer to the element backing array.
Definition: const_tensor_view.hpp:111
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157