std::experimental::reflect::Operator
Min standard notice:
Header: <experimental/reflect>
The Operator concept is satisfied if and only if T reflects an operator function or a conversion function (Note: Some types that satisfy Operator also satisfy MemberFunction or SpecialMemberFunction).
# Declarations
template< class T >
concept Operator = Function<T> && /* see below */;
(reflection TS)
# Example
This section is incompleteReason: examples