StormByte C++ Library 1.2.0
StormByte is a comprehensive, cross-platform C++ library aimed at easing system programming, configuration management, logging, and database handling tasks. This library provides a unified API that abstracts away the complexities and inconsistencies of different platforms (Windows, Linux).
Loading...
Searching...
No Matches
StormByte::Type::TriviallyDestructible Concept Reference

Type with a trivial destructor. More...

#include <StormByte/type_traits/object_semantics.hxx>

Concept definition

template<typename T>
concept StormByte::Type::TriviallyDestructible = std::is_trivially_destructible_v<T>
Type with a trivial destructor.
Definition object_semantics.hxx:91

Detailed Description

Type with a trivial destructor.

Template Parameters
TType to test.
template<Type::TriviallyDestructible T>
void pool_allocate(T* ptr);