3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
is_floating_point.hpp
Go to the documentation of this file.
1
// ArduinoJson - https://arduinojson.org
2
// Copyright © 2014-2023, Benoit BLANCHON
3
// MIT License
4
5
#pragma once
6
7
#include "
integral_constant.hpp
"
8
#include "
is_same.hpp
"
9
#include "
remove_cv.hpp
"
10
11
template
<
class
T >
12
struct
is_floating_point
13
:
integral_constant
<
14
bool,
//
15
is_same< float, typename remove_cv< T >::type >::value || is_same< double, typename remove_cv< T >::type >::value >
16
{
17
};
integral_constant.hpp
is_same.hpp
remove_cv.hpp
integral_constant
Definition:
integral_constant.hpp:9
is_floating_point
Definition:
is_floating_point.hpp:16
Generated by
1.9.6