Sha256: 9adbef04db00ff05bc6c4dd7a25f96bf0a143bb13a628cb11425620f85a601f6
Contents?: true
Size: 1.12 KB
Versions: 34
Compression:
Stored size: 1.12 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_UBJSON_CONSUME_STRING_HPP #define TAO_JSON_UBJSON_CONSUME_STRING_HPP #include "../external/pegtl/string_input.hpp" #include "../consume.hpp" #include "../forward.hpp" #include "parts_parser.hpp" namespace tao::json::ubjson { template< typename T, template< typename... > class Traits = traits, typename F > [[nodiscard]] T consume_string( F&& string ) { ubjson::basic_parts_parser< 1 << 24, 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 ) { ubjson::basic_parts_parser< 1 << 24, 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::ubjson #endif
Version data entries
34 entries across 34 versions & 1 rubygems