// ArduinoJson - https://arduinojson.org // Copyright Benoit Blanchon 2014-2021 // MIT License #pragma once #include "integral_constant.hpp" namespace ARDUINOJSON_NAMESPACE { template struct is_unsigned : false_type {}; template <> struct is_unsigned : true_type {}; template <> struct is_unsigned : true_type {}; template <> struct is_unsigned : true_type {}; template <> struct is_unsigned : true_type {}; template <> struct is_unsigned : true_type {}; #if ARDUINOJSON_HAS_INT64 template <> struct is_unsigned : true_type {}; #endif #if ARDUINOJSON_HAS_LONG_LONG template <> struct is_unsigned : true_type {}; #endif } // namespace ARDUINOJSON_NAMESPACE