3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
is_same.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 returns true if types T and U are the same.
10
template
<
typename
T,
typename
U >
11
struct
is_same
:
false_type
12
{
13
};
14
15
template
<
typename
T >
16
struct
is_same
< T, T > :
true_type
17
{
18
};
19
20
template
<
class
T,
class
U >
21
inline
constexpr
bool
is_same_v
=
is_same< T, U >::value
;
integral_constant.hpp
is_same_v
constexpr bool is_same_v
Definition:
is_same.hpp:21
integral_constant
Definition:
integral_constant.hpp:9
is_same
Definition:
is_same.hpp:12
Generated by
1.9.6