std::experimental::reflect::Destructor
Min standard notice:
Header: <experimental/reflect>
The Destructor concept is satisfied if and only if T reflects a destructor.
# Declarations
template< class T >
concept Destructor = Callable<T> && SpecialMemberFunction<T> && /* see below */;
(reflection TS)
# Example
This section is incompleteReason: examples