xtd
0.2.0
Loading...
Searching...
No Matches
xtd.core
include
xtd
real.hpp
Go to the documentation of this file.
1
4
#pragma once
5
#include "
real_decimal.hpp
"
6
#include "
real_double.hpp
"
7
#include "
real_single.hpp
"
8
10
namespace
xtd
{
11
// Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/real_.hpp
12
template
<
typename
type_t>
13
concept
real
=
14
xtd::real_single<type_t>
||
15
xtd::real_double<type_t>
||
16
xtd::real_decimal<type_t>
;
17
}
xtd::real_decimal
Definition
real_decimal.hpp:13
xtd::real_double
Definition
real_double.hpp:13
xtd::real_single
Definition
real_single.hpp:13
xtd::real
Definition
real.hpp:13
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
real_decimal.hpp
Contains xtd::real_decimal concept.
real_double.hpp
Contains xtd::real_double concept.
real_single.hpp
Contains xtd::real_single concept.
Generated on
for xtd by
Gammasoft
. All rights reserved.