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-2024, 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
template
<
typename
T >
14
struct
is_same
<T, T> :
true_type
{};
15
16
template
<
class
T,
class
U >
17
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:17
integral_constant
Definition:
integral_constant.hpp:8
is_same
Definition:
is_same.hpp:11
Generated by
1.9.6