xtd 0.2.0
Loading...
Searching...
No Matches
real_decimal.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "decimal.hpp"
6#include "raw_type.hpp"
7#include <concepts>
8
10namespace xtd {
76 template<typename type_t>
77 concept real_decimal =
78 std::same_as<xtd::raw_type<type_t>, xtd::decimal>;
79}
Concept real_decimal.
Definition real_decimal.hpp:77
Contains xtd::decimal type.
long double decimal
Represents a decimal-precision floating-point number.
Definition decimal.hpp:23
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::raw_type alias.