3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
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
9
template
<
typename
T >
10
struct
is_array
:
false_type
11
{
12
};
13
14
template
<
typename
T >
15
struct
is_array
< T[] > :
true_type
16
{
17
};
18
19
template
<
typename
T,
size_t
N >
20
struct
is_array
< T[N] > :
true_type
21
{
22
};
false_type
bool_constant< false > false_type
Definition
integral_constant.hpp:17
true_type
bool_constant< true > true_type
Definition
integral_constant.hpp:16
is_array
Definition
is_array.hpp:11
Generated by
1.13.2