Sha256: c3dee86fa64fca4b7db53df0c9c9e04424ec9d5346f2397cbf0d069fed107aa2
Contents?: true
Size: 781 Bytes
Versions: 34
Compression:
Stored size: 781 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_MSGPACK_TO_STRING_HPP #define TAO_JSON_MSGPACK_TO_STRING_HPP #include <string> #include "../value.hpp" #include "../events/from_value.hpp" #include "../events/transformer.hpp" #include "events/to_string.hpp" namespace tao::json::msgpack { 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... > consumer; json::events::from_value( consumer, v ); return consumer.value(); } } // namespace tao::json::msgpack #endif
Version data entries
34 entries across 34 versions & 1 rubygems