std::experimental::reflect::MemberFunction
Min standard notice:
Header: <experimental/reflect>
The MemberFunction concept is satisfied if and only if T reflects a member function, excluding constructors and destructors.
# Declarations
template< class T >
concept MemberFunction = RecordMember<T> && Function<T> && /* see below */;
(reflection TS)
# Example
This section is incompleteReason: examples