![]() |
VCCC
2024.05
VisualCamp Common C++ library
|
#include </home/jarvis/actions-runner/jarvis-vccc-2/_work/vccc/vccc/include/vccc/__concepts/destructible.hpp>
The concept destructible
specifies the concept of all types whose instances can safely be destroyed at the end of their lifetime (including reference types).
Unlike the Destructible named requirement, vccc::destructible
requires the destructor to be noexcept(true)
, not merely non-throwing when invoked, and allows reference types and array types.