Sha256: fa37246c743db946355cb2d2683369f94babea17ade25f7a6316ec086d8c65df
Contents?: true
Size: 668 Bytes
Versions: 7
Compression:
Stored size: 668 Bytes
Contents
// Copyright (c) 2017-2022 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
7 entries across 7 versions & 1 rubygems