Sha256: 6cedaf53dc267ff9f86e3c7890e2143352d7fbd3218d1354ee7b6333be1847f7
Contents?: true
Size: 1.09 KB
Versions: 7
Compression:
Stored size: 1.09 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_CBOR_CONSUME_STRING_HPP #define TAO_JSON_CBOR_CONSUME_STRING_HPP #include <tao/pegtl/memory_input.hpp> #include "../consume.hpp" #include "../forward.hpp" #include "parts_parser.hpp" namespace tao::json::cbor { template< typename T, template< typename... > class Traits = traits, typename F > [[nodiscard]] T consume_string( F&& string ) { cbor::basic_parts_parser< utf8_mode::check, 8, 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 ) { cbor::basic_parts_parser< utf8_mode::check, 8, pegtl::memory_input< pegtl::tracking_mode::lazy, pegtl::eol::lf_crlf, const char* > > pp( string, __FUNCTION__ ); json::consume< Traits >( pp, t ); } } // namespace tao::json::cbor #endif
Version data entries
7 entries across 7 versions & 1 rubygems