Sha256: b164c0ed42499fff18a50d3f14985a869778c320afa183203fb64eebe7b4062d
Contents?: true
Size: 1.11 KB
Versions: 7
Compression:
Stored size: 1.11 KB
Contents
// Copyright (c) 2018-2022 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 <tao/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
7 entries across 7 versions & 1 rubygems