VIPRA Documentation
Loading...
Searching...
No Matches
has_parameters.hpp
1#pragma once
2
3#include "vipra/concepts/is_void.hpp"
4
5namespace VIPRA::Concepts {
6template <typename class_t>
7concept has_parameters = requires(class_t instance) {
8 { instance.module_params() };
9};
10} // namespace VIPRA::Concepts
Definition has_parameters.hpp:7