◐ Shell
clean mode source ↗

std::experimental::reflect::Destructor - cppreference.com

From cppreference.com

template< class T >
concept Destructor = Callable<T> && SpecialMemberFunction<T> && /* see below */;
(reflection TS)

The Destructor concept is satisfied if and only if T reflects a destructor.

Example

See also