3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
integral_constant.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
template
<
typename
T, T v >
8
struct
integral_constant
{
9
static
const
T
value
= v;
10
};
11
12
template
<
bool
B>
13
using
bool_constant
=
integral_constant<bool, B>
;
14
15
using
true_type
=
bool_constant<true>
;
16
using
false_type
=
bool_constant<false>
;
17
integral_constant
Definition:
integral_constant.hpp:8
integral_constant::value
static const T value
Definition:
integral_constant.hpp:9
Generated by
1.9.6