xtd 0.2.0
Loading...
Searching...
No Matches
real_double.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "double.hpp"
6#include "raw_type.hpp"
7#include <concepts>
8
10namespace xtd {
11 // Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/real_double_.hpp
12 template<typename type_t>
13 concept real_double =
14 std::same_as<xtd::raw_type<type_t>, xtd::double_>;
15}
Definition real_double.hpp:13
Contains xtd::double_ type.
double double_
Represents a double-precision floating-point number.
Definition double.hpp:23
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::raw_type alias.