lin
stream.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_TYPES_STREAM_HPP_
8 #define LIN_CORE_TYPES_STREAM_HPP_
9 
10 #ifdef LIN_DESKTOP
11  #include <iostream>
12 #endif
13 
14 #include "../config.hpp"
15 #include "../traits.hpp"
16 
17 namespace lin {
18 namespace internal {
19 
42 template <class D>
43 class Stream {
44  static_assert(has_valid_traits<D>::value,
45  "Derived types to Stream<...> must have valid traits");
46 
47  public:
52  typedef traits<D> Traits;
53 
54  protected:
57  inline constexpr D &derived() {
58  return static_cast<D &>(*this);
59  }
60 
63  inline constexpr D const &derived() const {
64  return static_cast<D const &>(*this);
65  }
66 
67  public:
68  constexpr Stream() = default;
69  constexpr Stream(Stream<D> const &) = default;
70  constexpr Stream(Stream<D> &&) = default;
71  constexpr Stream<D> &operator=(Stream<D> const &) = default;
72  constexpr Stream<D> &operator=(Stream<D> &&) = default;
73 
76  inline constexpr size_t rows() const {
77  return derived().rows();
78  }
79 
82  inline constexpr size_t cols() const {
83  return derived().cols();
84  }
85 
90  inline constexpr size_t size() const {
91  return rows() * cols();
92  }
93 
106  inline constexpr typename Traits::elem_t operator()(size_t i, size_t j) const {
107  return derived()(i, j);
108  }
109 
124  inline constexpr typename Traits::elem_t operator()(size_t i) const {
125  return derived()(i);
126  }
127 
142  inline constexpr typename Traits::elem_t operator[](size_t i) const {
143  return derived()(i);
144  }
145 
157  inline constexpr typename Traits::eval_t eval() const {
158  return typename Traits::eval_t(derived());
159  }
160 };
161 
162 #ifdef LIN_DESKTOP
163 template <class C>
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";
169  }
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";
173  return os;
174 }
175 #endif
176 
177 } // namespace internal
178 } // namespace lin
179 
180 #endif
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&#39;s element type.
Definition: tensor.hpp:81
Tests if a tensor type&#39;s traits are valid.
Definition: tensor.hpp:326
Definition: config.hpp:27
_eval_t< C > eval_t
Tensor&#39;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