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