mrs_lib
Various reusable classes, functions and utilities for use in MRS projects
Loading...
Searching...
No Matches
mrs_lib::numeric Concept Reference

Convenience concept of a numeric value (i.e. either integral or floating point, and not bool). More...

#include <param_provider.h>

Concept definition

template<typename T>
concept mrs_lib::numeric = (std::integral<T> || std::floating_point<T>) && !std::same_as<T, bool>
Convenience concept of a numeric value (i.e. either integral or floating point, and not bool).
Definition param_provider.h:58

Detailed Description

Convenience concept of a numeric value (i.e. either integral or floating point, and not bool).