koutil
Loading...
Searching...
No Matches
koutil::argparser::are_arguments Concept Reference

Checks if a type is derived from ArgumentsBase. More...

#include <arg.h>

Concept definition

template<typename T>
concept koutil::argparser::are_arguments = std::is_base_of_v<ArgumentsBase, T>
Checks if a type is derived from ArgumentsBase.
Definition arg.h:130

Detailed Description

Checks if a type is derived from ArgumentsBase.

Template Parameters
TThe type to check.
Returns
True if T is derived from ArgumentsBase, false otherwise.