Sha256: 70c9e04eaaa6d21ef1b88212859511f1b6a48152651970bfaa4e4a983d4c584f

Contents?: true

Size: 1.33 KB

Versions: 10

Compression:

Stored size: 1.33 KB

Contents

// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/

#ifndef TAO_JSON_PEGTL_CONTRIB_INTERNAL_PEEK_UINT_HPP
#define TAO_JSON_PEGTL_CONTRIB_INTERNAL_PEEK_UINT_HPP

#include <cstddef>
#include <cstdint>

#include "../../config.hpp"
#include "../../internal/input_pair.hpp"

#include "read_uint.hpp"

namespace TAO_JSON_PEGTL_NAMESPACE::internal
{
   template< typename R >
   struct peek_uint_impl
   {
      using data_t = typename R::type;
      using pair_t = input_pair< data_t >;

      template< typename ParseInput >
      [[nodiscard]] static pair_t peek( ParseInput& in ) noexcept( noexcept( in.size( sizeof( data_t ) ) ) )
      {
         if( in.size( sizeof( data_t ) ) < sizeof( data_t ) ) {
            return { 0, 0 };
         }
         const data_t data = R::read( in.current() );
         return { data, sizeof( data_t ) };
      }
   };

   using peek_uint16_be = peek_uint_impl< read_uint16_be >;
   using peek_uint16_le = peek_uint_impl< read_uint16_le >;

   using peek_uint32_be = peek_uint_impl< read_uint32_be >;
   using peek_uint32_le = peek_uint_impl< read_uint32_le >;

   using peek_uint64_be = peek_uint_impl< read_uint64_be >;
   using peek_uint64_le = peek_uint_impl< read_uint64_le >;

}  // namespace TAO_JSON_PEGTL_NAMESPACE::internal

#endif

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
couchbase-3.2.0-universal-darwin-20 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.2.0 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.1.1 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.1.1-universal-darwin-20 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.1.0 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.0.3 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.0.3-universal-darwin-20 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.0.2 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.0.1-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp
couchbase-3.0.1 ext/third_party/json/include/tao/json/external/pegtl/contrib/internal/peek_uint.hpp