Sha256: 8ff854327d3fbbb75446f44c382ddef2756aafaf14e1c1c57225eb9a65882e20
Contents?: true
Size: 828 Bytes
Versions: 24
Compression:
Stored size: 828 Bytes
Contents
// Copyright (c) 2014-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_JSON_PEGTL_INTERNAL_EOLF_HPP #define TAO_JSON_PEGTL_INTERNAL_EOLF_HPP #include "../config.hpp" #include "skip_control.hpp" #include "../analysis/generic.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { struct eolf { using analyze_t = analysis::generic< analysis::rule_type::opt >; template< typename Input > [[nodiscard]] static bool match( Input& in ) noexcept( noexcept( Input::eol_t::match( in ) ) ) { const auto p = Input::eol_t::match( in ); return p.first || ( !p.second ); } }; template<> inline constexpr bool skip_control< eolf > = true; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems