// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once namespace ArduinoJson { namespace Internals { template bool isNaN(T x) { return x != x; } template bool isInfinity(T x) { return x != 0.0 && x * 2 == x; } } }