3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
is_const.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
7
#include "
integral_constant.hpp
"
8
9
// A meta-function that return the type T without the const modifier
10
template
<
typename
T >
11
struct
is_const
:
false_type
12
{
13
};
14
15
template
<
typename
T >
16
struct
is_const
< const T > :
true_type
17
{
18
};
integral_constant.hpp
integral_constant
Definition:
integral_constant.hpp:9
is_const
Definition:
is_const.hpp:12
Generated by
1.9.6