Loading [MathJax]/jax/input/TeX/config.js
Photon Engine 2.0.0-beta
A physically based renderer.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
ph::CDerived Concept Reference

Checks whether DerivedType is derived from BaseType. The result is also true if both types are the same; false if one of them is a primitive type. More...

#include <traits.h>

Concept definition

template<typename DerivedType, typename BaseType>
concept ph::CDerived = std::derived_from<DerivedType, BaseType>
Checks whether DerivedType is derived from BaseType. The result is also true if both types are the sa...
Definition traits.h:122

Detailed Description

Checks whether DerivedType is derived from BaseType. The result is also true if both types are the same; false if one of them is a primitive type.