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

Concept to restrict templates to not pointers and not references. More...

#include <Concepts.hpp>

Concept definition

template<typename Type>
concept galaxy::meta::not_memory = !std::is_pointer<Type>::value && !std::is_reference<Type>::value && std::is_object<Type>::value
Concept to restrict templates to not pointers and not references.
Definition Concepts.hpp:37

Detailed Description

Concept to restrict templates to not pointers and not references.

Type must not be a pointer or reference.

Template Parameters
TypeType to test.

Definition at line 37 of file Concepts.hpp.