7 #ifndef LIN_CORE_OPERATIONS_MAPPING_TRANSPOSE_HPP_ 8 #define LIN_CORE_OPERATIONS_MAPPING_TRANSPOSE_HPP_ 59 constexpr
size_t rows()
const {
65 constexpr
size_t cols()
const {
90 return (*
this)(i /
cols(), i %
cols());
constexpr Traits::elem_t & operator()(size_t i, size_t j)
Read write access to the requested tensor element.
Definition: mapping_transpose.hpp:76
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
constexpr size_t size() const
Definition: stream.hpp:90
Mapping< C > & c
Mapping reference.
Definition: mapping_transpose.hpp:26
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 MappingTranspose< C > & derived()
Definition: stream.hpp:57
Proxy to a lazily evalutated transpose operation.
Definition: mapping_transpose.hpp:22
constexpr size_t rows() const
Definition: stream.hpp:76
constexpr size_t cols() const
Definition: mapping_transpose.hpp:65
traits< MappingTranspose< C > > Traits
Traits information for this type.
Definition: mapping_transpose.hpp:33
constexpr MappingTranspose(Mapping< C > &c)
Constructs a proxy to a tensor transpose operation.
Definition: mapping_transpose.hpp:54
constexpr size_t cols() const
Definition: stream.hpp:82
_elem_t< C > elem_t
Tensor's element type.
Definition: tensor.hpp:81
Definition: config.hpp:27
constexpr Traits::elem_t & operator()(size_t i)
Read write access to the requested tensor element.
Definition: mapping_transpose.hpp:89
constexpr size_t rows() const
Definition: mapping_transpose.hpp:59
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