7 #ifndef LIN_CORE_TYPES_STREAM_HPP_ 8 #define LIN_CORE_TYPES_STREAM_HPP_ 14 #include "../config.hpp" 15 #include "../traits.hpp" 45 "Derived types to Stream<...> must have valid traits");
58 return static_cast<D &
>(*this);
63 inline constexpr D
const &
derived()
const {
64 return static_cast<D
const &
>(*this);
68 constexpr
Stream() =
default;
76 inline constexpr
size_t rows()
const {
82 inline constexpr
size_t cols()
const {
90 inline constexpr
size_t size()
const {
164 std::ostream &operator<<(std::ostream &os, Stream<C>
const &s) {
165 for (
size_t i = 0; i < s.rows() - 1; i++) {
166 for (
size_t j = 0; j < s.cols() - 1; j++)
167 os << s(i, j) <<
" ";
168 os << s(i, s.cols() - 1) <<
"\n";
170 for (
size_t j = 0; j < s.cols() - 1; j++)
171 os << s(s.rows() - 1, j) <<
" ";
172 os << s(s.rows() - 1, s.cols() - 1) <<
"\n";
Tensor interface providing read only access to elements.
Definition: stream.hpp:43
constexpr D const & derived() const
Definition: stream.hpp:63
constexpr size_t size() const
Definition: stream.hpp:90
constexpr Traits::elem_t operator()(size_t i) const
Provides read only access to tensor elements.
Definition: stream.hpp:124
constexpr Traits::elem_t operator[](size_t i) const
Provides read only access to tensor elements.
Definition: stream.hpp:142
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr D & derived()
Definition: stream.hpp:57
traits< D > Traits
Traits information for this type.
Definition: stream.hpp:45
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Tests if a tensor type's traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
_eval_t< C > eval_t
Tensor's evalutation type.
Definition: tensor.hpp:89
constexpr Traits::elem_t operator()(size_t i, size_t j) const
Provides read only access to tensor elements.
Definition: stream.hpp:106
constexpr Traits::eval_t eval() const
Forces evaluation of this stream to a value backed type.
Definition: stream.hpp:157