MostlyHarmless 0.0.1
 
Loading...
Searching...
No Matches
marvin::FixedWidthSignedInteger Concept Reference

Constrains T to be a fixed width signed int. More...

#include <marvin_Concepts.h>

Concept definition

template<class T>
concept marvin::FixedWidthSignedInteger = std::same_as<std::int8_t, T> ||
std::same_as<std::int16_t, T> ||
std::same_as<std::int32_t, T> ||
std::same_as<std::int64_t, T>
Constrains T to be a fixed width signed int.
Definition marvin_Concepts.h:45

Detailed Description

Constrains T to be a fixed width signed int.