MT Core (C++)
Core library for replacing C++ standard in project usage
Loading...
Searching...
No Matches
mtcore::DefaultDeinit Concept Reference

Represents a type that has a default (no allocator) deinit method. More...

#include <traits.hpp>

Concept definition

template<typename T>
concept mtcore::DefaultDeinit = requires(T &t) { t.deinit(); }
Represents a type that has a default (no allocator) deinit method.

Detailed Description

Represents a type that has a default (no allocator) deinit method.

Definition at line 124 of file core/mtcore/traits.hpp.