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

Class or struct type (not union, not enum). More...

#include <StormByte/type_traits/categories.hxx>

Concept definition

template<typename T>
concept StormByte::Type::Class = std::is_class_v<T>
Class or struct type (not union, not enum).
Definition categories.hxx:216

Detailed Description

Class or struct type (not union, not enum).

Template Parameters
TType to test.
template<Type::Class T>
void inspect(T obj);