galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
galaxy::meta::is_object Concept Reference

Tests for a type being a class, union, array, scalar or integral constant. More...

#include <Concepts.hpp>

Concept definition

template<typename Type>
concept galaxy::meta::is_object = std::is_object<Type>::value
Tests for a type being a class, union, array, scalar or integral constant.
Definition Concepts.hpp:67

Detailed Description

Tests for a type being a class, union, array, scalar or integral constant.

"Object" refers to any possibly cv-qualified type other than function, reference, or void types.

Template Parameters
TypeType to test.

Definition at line 67 of file Concepts.hpp.