Raven Engine v0.1
Loading...
Searching...
No Matches
Raven::DerivedFrom Concept Reference

Concept to check if T is derived from Base. More...

#include <Concepts.h>

Concept definition

template<typename Base, typename T>
concept Raven::DerivedFrom = std::is_base_of_v<Base, T>
Concept to check if T is derived from Base.
Definition Concepts.h:39

Detailed Description

Concept to check if T is derived from Base.

This concept checks whether the type T is derived from the base class Base.

Template Parameters
BaseThe base class.
TThe type to check.