Sha256: 258452a07bf82496fc26bfad37641fdc72425b790a5c0305a33832f6737ad9df
Contents?: true
Size: 887 Bytes
Versions: 7
Compression:
Stored size: 887 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_UBJSON_TO_STRING_HPP #define TAO_JSON_UBJSON_TO_STRING_HPP #include <string> #include <utility> #include "../value.hpp" #include "../events/from_value.hpp" #include "../events/non_finite_to_null.hpp" #include "../events/transformer.hpp" #include "events/to_string.hpp" namespace tao::json::ubjson { template< template< typename... > class... Transformers, template< typename... > class Traits > [[nodiscard]] std::string to_string( const basic_value< Traits >& v ) { json::events::transformer< events::to_string, Transformers..., json::events::non_finite_to_null > consumer; json::events::from_value( consumer, v ); return std::move( consumer ).value(); } } // namespace tao::json::ubjson #endif
Version data entries
7 entries across 7 versions & 1 rubygems