3-phase PV router
Loading...
Searching...
No Matches
is_signed.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
11// clang-format off
12template <typename T>
14 is_same<remove_cv_t<T>, char>::value ||
15 is_same<remove_cv_t<T>, signed char>::value ||
16 is_same<remove_cv_t<T>, signed short>::value ||
17 is_same<remove_cv_t<T>, signed int>::value ||
18 is_same<remove_cv_t<T>, signed long>::value ||
19 is_same<remove_cv_t<T>, signed long long>::value ||
20 is_same<remove_cv_t<T>, float>::value ||
21 is_same<remove_cv_t<T>, double>::value> {};
22// clang-format on
23