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

Concept to check if a type satisfies the requirements of a collection of commands. More...

#include <subcommand.h>

Concept definition

template<typename T>
concept koutil::argparser::are_commands = std::is_base_of_v<CommandsBase, std::decay_t<T>>
Concept to check if a type satisfies the requirements of a collection of commands.
Definition subcommand.h:62

Detailed Description

Concept to check if a type satisfies the requirements of a collection of commands.

Template Parameters
TThe type to check.