Sha256: 2c372727fae40e15d2443c10b0d7b30456f7f52fb358ba4db6e0f0da9a38d0d1
Contents?: true
Size: 914 Bytes
Versions: 24
Compression:
Stored size: 914 Bytes
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_INTERNAL_PEEK_MASK_UINT8_HPP #define TAO_JSON_PEGTL_INTERNAL_PEEK_MASK_UINT8_HPP #include <cstddef> #include <cstdint> #include "../config.hpp" #include "input_pair.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { template< std::uint8_t M > struct peek_mask_uint8 { using data_t = std::uint8_t; using pair_t = input_pair< std::uint8_t >; static constexpr std::size_t min_input_size = 1; static constexpr std::size_t max_input_size = 1; template< typename Input > [[nodiscard]] static pair_t peek( const Input& in, const std::size_t /*unused*/ = 1 ) noexcept { return { std::uint8_t( in.peek_uint8() & M ), 1 }; } }; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems