Searched defs:unary_operator (Results 1 – 3 of 3) sorted by relevance
222 struct unary_operator<negative_op, T> { struct224 typedef T const result_type;225 static result_type eval(T const& v) in eval()231 struct unary_operator<positive_op, T> { struct233 typedef T const result_type;234 static result_type eval(T const& v) in eval()240 struct unary_operator<logical_not_op, T> { struct242 typedef T const result_type;243 static result_type eval(T const& v) in eval()249 struct unary_operator<invert_op, T> { struct[all …]
244 struct unary_operator<dereference_op, T> struct246 typedef typename T::reference result_type;247 static result_type eval(T const& iter) in eval()
234 rule_type unary_operator; member