7 #ifndef LIN_VIEWS_CONST_VECTOR_VIEW_HPP_ 8 #define LIN_VIEWS_CONST_VECTOR_VIEW_HPP_ 10 #include "../core.hpp" 30 template <
typename T,
size_t N,
size_t MN = N>
33 "Invalid ConstVectorView<...> parameters");
114 template <
typename T,
size_t N,
size_t MN = N>
117 "Invalid ConstRowVectorView<...> parameters");
185 template <
typename T,
size_t N,
size_t MN>
190 template <
typename T,
size_t N,
size_t 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;
198 template <
typename T,
size_t N,
size_t MN>
203 template <
typename T,
size_t N,
size_t 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;
constexpr void resize(size_t n)
Resizes the row vector view'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'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'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'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'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