Sha256: 7b20ccda2c4cd66b19f1bc227a8f66b8a634a2c3e3c38f3e15f4b78390e9a869
Contents?: true
Size: 668 Bytes
Versions: 34
Compression:
Stored size: 668 Bytes
Contents
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_EVENTS_NON_FINITE_TO_NULL_HPP #define TAO_JSON_EVENTS_NON_FINITE_TO_NULL_HPP #include <cmath> namespace tao::json::events { template< typename Consumer > struct non_finite_to_null : Consumer { using Consumer::Consumer; using Consumer::number; void number( const double v ) { if( !std::isfinite( v ) ) { Consumer::null(); } else { Consumer::number( v ); } } }; } // namespace tao::json::events #endif
Version data entries
34 entries across 34 versions & 1 rubygems