10 #ifndef SRC_INCLUDE_SMASH_NUMERIC_CAST_H_
11 #define SRC_INCLUDE_SMASH_NUMERIC_CAST_H_
14 #include <string_view>
28 std::string_view name, prefix, suffix;
30 name = __PRETTY_FUNCTION__;
31 prefix =
"auto smash::detail::type_name() [T = ";
33 #elif defined(__GNUC__)
34 name = __PRETTY_FUNCTION__;
35 prefix =
"constexpr auto smash::detail::type_name() [with T = ";
37 #elif defined(_MSC_VER)
39 prefix =
"auto __cdecl smash::detail::type_name<";
46 name.remove_prefix(prefix.size());
47 name.remove_suffix(suffix.size());
48 return std::string{name};
72 template <
typename To,
class From,
73 typename std::enable_if_t<std::is_arithmetic_v<To>,
bool> =
true>
79 const To to =
static_cast<To
>(from);
89 constexpr
const bool is_different_signedness =
90 (std::is_signed_v<To> != std::is_signed_v<From>);
91 if (
static_cast<From
>(to) != from ||
92 (is_different_signedness && ((to < To{}) != (from < From{})))) {
93 throw std::domain_error(
"Numeric cast failed converting '" +
94 detail::type_name<From>() +
"' to '" +
95 detail::type_name<To>() +
"'.");
constexpr auto type_name()
Get type of variable as string in a human-readable way.
constexpr To numeric_cast(From from) noexcept(false)
Function template to perform a safe numeric conversion between types.