9 #ifndef BC_EXPRESSION_TEMPLATES_FUNCTION_TRANSPOSE_H_ 10 #define BC_EXPRESSION_TEMPLATES_FUNCTION_TRANSPOSE_H_ 19 template<
class Value,
class System_Tag>
44 auto operator [] (ADL_Integer i)
const -> decltype(array[i]) {
63 -> decltype(
array(n,m, integers...)) {
64 return array(n,m, integers...);
68 -> decltype(
array(n,m, integers...)) {
69 return array(n,m, integers...);
74 template<
class expr_t>
76 using expression_template_t = std::decay_t<decltype(expr.expression_template())>;
77 using system_tag =
typename expression_template_t::system_tag;
81 template<
class Array,
class SystemTag>
83 return expression.array;
System_Tag system_tag
Definition: function_transpose.h:25
#define BCINLINE
Definition: common.h:96
auto make_transpose(expr_t expr)
Definition: function_transpose.h:75
BCINLINE bc::size_t dim(int i) const
Definition: function_transpose.h:52
static oper::transpose< System_Tag > get_operation()
Definition: function_transpose.h:39
BCINLINE bc::size_t cols() const
Definition: function_transpose.h:50
typename Value::value_type value_type
Definition: function_transpose.h:24
BCINLINE bc::size_t size() const
Definition: function_transpose.h:48
Un_Op(Value array, oper::transpose< System_Tag >=oper::transpose< System_Tag >())
Definition: function_transpose.h:34
BCINLINE value_type operator()(integers... index) const
Definition: expression_unary.h:45
BCINLINE value_type operator[](int index) const
Definition: expression_unary.h:50
ArrayType array
Definition: expression_unary.h:32
int size_t
Definition: common.h:283
static constexpr int tensor_iterator_dim
Definition: expression_unary.h:30
static constexpr int tensor_dim
Definition: expression_unary.h:29
typename ArrayType::system_tag system_tag
Definition: expression_unary.h:27
BCINLINE bc::size_t rows() const
Definition: function_transpose.h:49
Definition: expression_template_base.h:77
const auto transpose() const
Definition: expression_operations.h:85
Value array
Definition: function_transpose.h:31
Definition: expression_template_traits.h:19
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22