3#ifndef pRC_TENSOR_TRAIN_OPERATOR_FUNCTIONS_EVAL_H
4#define pRC_TENSOR_TRAIN_OPERATOR_FUNCTIONS_EVAL_H
11 requires TensorTrain::IsOperator<RemoveReference<X>>
12 static inline constexpr decltype(
auto)
eval(X &&a)
14 return as(forward<X>(a));
18 requires TensorTrain::IsOperatorView<RemoveReference<X>>
19 static inline constexpr auto eval(X &&a)
Operator(OperatorViews::View< T, M, N, Ranks, F > const &) -> Operator< T, M, N, Ranks >
Definition cholesky.hpp:10
static constexpr RemoveConst< X > as(X &&a)
Definition basics.hpp:83
static constexpr decltype(auto) eval(X &&a)
Definition eval.hpp:12