Sha256: e5328c4024cf6ffffd7e461661f1f61fa5495f957cb7e6c1f2216c9f838a7d48
Contents?: true
Size: 828 Bytes
Versions: 34
Compression:
Stored size: 828 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_UBJSON_TO_STREAM_HPP #define TAO_JSON_UBJSON_TO_STREAM_HPP #include <ostream> #include "../value.hpp" #include "../events/from_value.hpp" #include "../events/non_finite_to_null.hpp" #include "../events/transformer.hpp" #include "events/to_stream.hpp" namespace tao::json::ubjson { template< template< typename... > class... Transformers, template< typename... > class Traits > void to_stream( std::ostream& os, const basic_value< Traits >& v ) { json::events::transformer< events::to_stream, Transformers..., json::events::non_finite_to_null > consumer( os ); json::events::from_value( consumer, v ); } } // namespace tao::json::ubjson #endif
Version data entries
34 entries across 34 versions & 1 rubygems