summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/TypeTraits/IsArray.hpp
blob: da420725d0413f2c055fd8e8a25ad43c98ac3142 (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
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2018
// MIT License

#pragma once

namespace ArduinoJson {
namespace Internals {

// A meta-function that return the type T without the const modifier
template <typename T>
struct IsArray {
  static const bool value = false;
};
template <typename T>
struct IsArray<T[]> {
  static const bool value = true;
};
template <typename T, size_t TN>
struct IsArray<T[TN]> {
  static const bool value = true;
};
}
}