3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
conditional.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
template
<
bool
Condition,
class
TrueType,
class
FalseType >
8
struct
conditional
9
{
10
typedef
TrueType
type
;
11
};
12
13
template
<
class
TrueType,
class
FalseType >
14
struct
conditional
< false, TrueType, FalseType >
15
{
16
typedef
FalseType
type
;
17
};
conditional< false, TrueType, FalseType >::type
FalseType type
Definition:
conditional.hpp:16
conditional
Definition:
conditional.hpp:9
conditional::type
TrueType type
Definition:
conditional.hpp:10
Generated by
1.9.6