7 #ifndef LIN_REFERENCES_MATRIX_STREAM_REFERENCE_HPP_ 8 #define LIN_REFERENCES_MATRIX_STREAM_REFERENCE_HPP_ 10 #include "../core.hpp" 36 template <
class E,
size_t R,
size_t C,
size_t MR,
size_t MC>
39 "Derived types to MatrixStreamReference<...> must have matrix traits");
68 template <
class E,
size_t R,
size_t C,
size_t MR,
size_t MC>
70 typedef _elem_t<E> type;
73 template <
class E,
size_t R,
size_t C,
size_t MR,
size_t MC>
75 static constexpr
size_t rows = R;
76 static constexpr
size_t cols = C;
77 static constexpr
size_t max_rows = MR;
78 static constexpr
size_t max_cols = MC;
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
constexpr MatrixStreamReference< E, R, C, MR, MC > & derived()
Definition: stream.hpp:57
Tests if a tensor type is a matrix.
Definition: matrix.hpp:27
constexpr size_t rows() const
Definition: stream.hpp:76
traits< MatrixStreamReference< E, R, C, MR, MC > > Traits
Traits information for this type.
Definition: matrix_stream_reference.hpp:39
Generic tensor reference with read only access.
Definition: tensor_stream_reference.hpp:36
constexpr size_t cols() const
Definition: stream.hpp:82
Generic matrix reference with read-only access.
Definition: matrix_stream_reference.hpp:37
Definition: config.hpp:27
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