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