7 #ifndef LIN_REFERENCES_VECTOR_STREAM_REFERENCE_HPP_ 8 #define LIN_REFERENCES_VECTOR_STREAM_REFERENCE_HPP_ 10 #include "../core.hpp" 34 template <
class E,
size_t N,
size_t MN>
37 "Derived types to VectorStreamReference<...> must have column vector traits");
98 template <
class E,
size_t N,
size_t MN>
100 typedef _elem_t<E> type;
103 template <
class E,
size_t N,
size_t MN>
105 static constexpr
size_t rows = N;
106 static constexpr
size_t cols = 1;
107 static constexpr
size_t max_rows = MN;
108 static constexpr
size_t max_cols = 1;
129 template <
class E,
size_t N,
size_t MN>
132 "Derived types to RowVectorStreamReference<...> must have row vector traits");
193 template <
class E,
size_t N,
size_t MN>
195 typedef _elem_t<E> type;
198 template <
class E,
size_t N,
size_t MN>
200 static constexpr
size_t rows = 1;
201 static constexpr
size_t cols = N;
202 static constexpr
size_t max_rows = 1;
203 static constexpr
size_t max_cols = MN;
Collection of compile time information describing a tensor type which is deemed a vector...
Definition: vector.hpp:103
Generic vector reference with read only access.
Definition: vector_stream_reference.hpp:35
constexpr size_t size() const
Definition: stream.hpp:90
constexpr void resize(size_t r, size_t c)
Resizes a tensor's dimensions.
Definition: dimensions.hpp:75
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
vector_traits< VectorStreamReference< E, N, MN > > VectorTraits
Vector traits information for this type.
Definition: vector_stream_reference.hpp:50
constexpr VectorStreamReference< E, N, MN > & derived()
Definition: stream.hpp:57
vector_traits< RowVectorStreamReference< E, N, MN > > VectorTraits
Vector traits information for this type.
Definition: vector_stream_reference.hpp:145
Generic row vector reference with read only access.
Definition: vector_stream_reference.hpp:130
traits< VectorStreamReference< E, N, MN > > Traits
Traits information for this type.
Definition: vector_stream_reference.hpp:37
constexpr VectorStreamReference(Stream< E > const &stream, size_t i, size_t j, size_t n)
Constructs a new vector reference with the provided stream, anchor point, and length.
Definition: vector_stream_reference.hpp:94
constexpr size_t rows() const
Definition: stream.hpp:76
Generic tensor reference with read only access.
Definition: tensor_stream_reference.hpp:36
constexpr size_t cols() const
Definition: stream.hpp:82
Tests if a tensor type is a column vector.
Definition: vector.hpp:54
Definition: config.hpp:27
Tests if a tensor type is a row vector.
Definition: vector.hpp:33
traits< RowVectorStreamReference< E, N, MN > > Traits
Traits information for this type.
Definition: vector_stream_reference.hpp:132
constexpr RowVectorStreamReference(Stream< E > const &stream, size_t i, size_t j, size_t n)
Constructs a new row vector reference with the provided mapping, anchor point, and length...
Definition: vector_stream_reference.hpp:189
Provides a specific tensor type's compile time dimensions.
Definition: tensor.hpp:60
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157