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