Searched defs:free_binary_op_result (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/boost/yap/detail/ |
D | algorithm.hpp | 268 struct free_binary_op_result<ExprTemplate, OpKind, T, U, true, true> struct 270 using lhs_type = operand_type_t<ExprTemplate, T>; 271 using rhs_type = expr_ref_t<ExprTemplate, U>; 272 using rhs_tuple_type = expr_ref_tuple_t<ExprTemplate, rhs_type>; 273 using type = ExprTemplate<OpKind, hana::tuple<lhs_type, rhs_type>>; 281 struct free_binary_op_result<ExprTemplate, OpKind, T, U, true, false> struct 283 using lhs_type = operand_type_t<ExprTemplate, T>; 284 using rhs_type = remove_cv_ref_t<U>; 285 using type = ExprTemplate<OpKind, hana::tuple<lhs_type, rhs_type>>;
|