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::TriviallyDefaultConstructible Concept Reference

DefaultConstructible with a trivial default constructor. More...

#include <StormByte/type_traits/object_semantics.hxx>

Concept definition

template<typename T>
concept StormByte::Type::TriviallyDefaultConstructible = std::is_trivially_default_constructible_v<T>
DefaultConstructible with a trivial default constructor.
Definition object_semantics.hxx:115

Detailed Description

DefaultConstructible with a trivial default constructor.

Template Parameters
TType to test.
template<Type::TriviallyDefaultConstructible T>
T* pool_new();