lin
const_matrix_view.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_VIEWS_CONST_MATRIX_VIEW_HPP_
8 #define LIN_VIEWS_CONST_MATRIX_VIEW_HPP_
9 
10 #include "../core.hpp"
11 #include "const_tensor_view.hpp"
12 
13 namespace lin {
14 namespace internal {
15 
32 template <typename T, size_t R, size_t C, size_t MR = R, size_t MC = C>
33 class ConstMatrixView : public ConstTensorView<ConstMatrixView<T, R, C, MR, MC>> {
34  static_assert(is_matrix<Matrix<T, R, C, MR, MC>>::value,
35  "Invalid ConstMatrixView<...> parameters");
36 
37  public:
43 
44  protected:
46 
47  public:
56 
57  constexpr ConstMatrixView() = delete;
58  constexpr ConstMatrixView(ConstMatrixView<T, R, C, MR, MC> const &) = default;
59  constexpr ConstMatrixView(ConstMatrixView<T, R, C, MR, MC> &&) = default;
60  constexpr ConstMatrixView<T, R, C, MR, MC> &operator=(ConstMatrixView<T, R, C, MR, MC> const &) = default;
61  constexpr ConstMatrixView<T, R, C, MR, MC> &operator=(ConstMatrixView<T, R, C, MR, MC> &&) = default;
62 };
63 
64 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
65 struct _elem<ConstMatrixView<T, R, C, MR, MC>> {
66  typedef T type;
67 };
68 
69 template <typename T, size_t R, size_t C, size_t MR, size_t MC>
70 struct _dims<ConstMatrixView<T, R, C, MR, MC>> {
71  static constexpr size_t rows = R;
72  static constexpr size_t cols = C;
73  static constexpr size_t max_rows = MR;
74  static constexpr size_t max_cols = MC;
75 };
76 } // namespace internal
77 } // namespace lin
78 
79 #endif
constexpr size_t size() const
Definition: stream.hpp:90
constexpr void resize(size_t r, size_t c)
Resizes a tensor&#39;s dimensions.
Definition: dimensions.hpp:75
Provides a tensor type&#39;s element type.
Definition: tensor.hpp:28
Collection of compile time information about a specific tensor class.
Definition: tensor.hpp:75
constexpr ConstMatrixView< T, R, C, MR, MC > & derived()
Definition: stream.hpp:57
Member pointer backed constant tensor.
Definition: const_tensor_view.hpp:31
Generic matrix.
Definition: matrix.hpp:35
Tests if a tensor type is a matrix.
Definition: matrix.hpp:27
constexpr size_t rows() const
Definition: stream.hpp:76
traits< ConstMatrixView< T, R, C, MR, MC > > Traits
Traits information for this type.
Definition: const_matrix_view.hpp:35
constexpr size_t cols() const
Definition: stream.hpp:82
Definition: config.hpp:27
Provides a specific tensor type&#39;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
Generic constant matrix view.
Definition: const_matrix_view.hpp:33