Sha256: 894f75953665719416fd5755fbf6644d106e78a132ec20e3d8cf6db56c25bfcd

Contents?: true

Size: 1.1 KB

Versions: 7

Compression:

Stored size: 1.1 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_MSGPACK_CONSUME_STRING_HPP
#define TAO_JSON_MSGPACK_CONSUME_STRING_HPP

#include <tao/pegtl/memory_input.hpp>

#include "../consume.hpp"
#include "../forward.hpp"

#include "parts_parser.hpp"

namespace tao::json::msgpack
{
   template< typename T, template< typename... > class Traits = traits, typename F >
   [[nodiscard]] T consume_string( F&& string )
   {
      msgpack::basic_parts_parser< 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 )
   {
      msgpack::basic_parts_parser< 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::msgpack

#endif

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
couchbase-3.4.5 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp
couchbase-3.4.4 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp
couchbase-3.4.3 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp
couchbase-3.4.2 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp
couchbase-3.4.1 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp
couchbase-3.4.0 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp
couchbase-3.3.0 ext/couchbase/third_party/json/include/tao/json/msgpack/consume_string.hpp