Sha256: b875a0b1847826ce9a74cdff80176461dd35d96f7fddb420b2406f4bfb397464
Contents?: true
Size: 1.11 KB
Versions: 34
Compression:
Stored size: 1.11 KB
Contents
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_MSGPACK_CONSUME_STRING_HPP #define TAO_JSON_MSGPACK_CONSUME_STRING_HPP #include "../external/pegtl/string_input.hpp" #include "../consume.hpp" #include "../forward.hpp" #include "parts_parser.hpp" namespace tao::json::msgpack { template< typename T, template< typename... > class Traits = traits, typename F > [[nodiscard]] T consume_string( F&& string ) { msgpack::basic_parts_parser< utf8_mode::check, pegtl::memory_input< pegtl::tracking_mode::lazy, pegtl::eol::lf_crlf, const char* > > pp( string, __FUNCTION__ ); return json::consume< T, Traits >( pp ); } template< template< typename... > class Traits = traits, typename F, typename T > void consume_string( F&& string, T& t ) { msgpack::basic_parts_parser< utf8_mode::check, pegtl::memory_input< pegtl::tracking_mode::lazy, pegtl::eol::lf_crlf, const char* > > pp( string, __FUNCTION__ ); json::consume< Traits >( pp, t ); } } // namespace tao::json::msgpack #endif
Version data entries
34 entries across 34 versions & 1 rubygems