Sha256: 6e68835c0c108a61e9521b63b09b399b35e698536a30191f18541ff7e8582727
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
// Copyright (c) 2019-2022 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_JAXN_CONSUME_STRING_HPP #define TAO_JSON_JAXN_CONSUME_STRING_HPP #include <tao/pegtl/string_input.hpp> #include "../consume.hpp" #include "../forward.hpp" #include "parts_parser.hpp" namespace tao::json::jaxn { template< typename T, template< typename... > class Traits = traits, typename F > [[nodiscard]] T consume_string( F&& string ) { jaxn::basic_parts_parser< 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 ) { jaxn::basic_parts_parser< pegtl::memory_input< pegtl::tracking_mode::lazy, pegtl::eol::lf_crlf, const char* > > pp( string, __FUNCTION__ ); json::consume< Traits >( pp, t ); } } // namespace tao::json::jaxn #endif
Version data entries
7 entries across 7 versions & 1 rubygems