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-2023, Benoit BLANCHON
3// MIT License
4
5#pragma once
6#include <stddef.h>
7
8// size_t
9template< typename T >
11{
12};
13
14template< typename T >
15struct is_array< T[] > : true_type
16{
17};
18
19template< typename T, size_t N >
20struct is_array< T[N] > : true_type
21{
22};