// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once namespace ArduinoJson { namespace Internals { // A meta-function that return the type T without the const modifier template struct IsArray { static const bool value = false; }; template struct IsArray { static const bool value = true; }; template struct IsArray { static const bool value = true; }; } }