Minh Nguyen / ArduinoJson
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers integral_constant.hpp Source File

integral_constant.hpp

00001 // ArduinoJson - arduinojson.org
00002 // Copyright Benoit Blanchon 2014-2021
00003 // MIT License
00004 
00005 #pragma once
00006 
00007 #include <ArduinoJson/Namespace.hpp>
00008 
00009 namespace ARDUINOJSON_NAMESPACE {
00010 
00011 template <typename T, T v>
00012 struct integral_constant {
00013   static const T value = v;
00014 };
00015 
00016 typedef integral_constant<bool, true> true_type;
00017 typedef integral_constant<bool, false> false_type;
00018 
00019 }  // namespace ARDUINOJSON_NAMESPACE