summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/TypeTraits/IsSignedIntegral.hpp
blob: 7334eb9c73eb9c98a6b0d4c298fb80b398abc3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2018
// MIT License

#pragma once

#include "../Configuration.hpp"
#include "IsSame.hpp"

namespace ArduinoJson {
namespace Internals {

// A meta-function that returns true if T is an integral type.
template <typename T>
struct IsSignedIntegral {
  static const bool value =
      IsSame<T, signed char>::value || IsSame<T, signed short>::value ||
      IsSame<T, signed int>::value || IsSame<T, signed long>::value ||
#if ARDUINOJSON_USE_LONG_LONG
      IsSame<T, signed long long>::value ||
#endif
#if ARDUINOJSON_USE_INT64
      IsSame<T, signed __int64>::value ||
#endif
      false;
};
}
}