sparrow 1.0.0
Loading...
Searching...
No Matches
sparrow::decimal_integer_type Concept Reference

Concept for valid decimal integer backing types. More...

#include <decimal.hpp>

Concept definition

template<typename T>
concept sparrow::decimal_integer_type = std::is_same_v<T, std::int32_t> || std::is_same_v<T, std::int64_t>
|| std::is_same_v<T, int128_t> || std::is_same_v<T, int256_t>
Concept for valid decimal integer backing types.
Definition decimal.hpp:24

Detailed Description

Concept for valid decimal integer backing types.

Defines the integer types that can be used as the underlying storage for decimal values. Supports both standard integer types and extended precision integer types.

Definition at line 24 of file decimal.hpp.