3-phase PV router
Loading...
Searching...
No Matches
is_array.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
7#include <stddef.h> // size_t
8
9template <typename T>
10struct is_array : false_type {};
11
12template <typename T>
13struct is_array<T[]> : true_type {};
14
15template< typename T, size_t N >
16struct is_array<T[N]> : true_type {};