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