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