Sha256: 44bc31b76f637125baa153ddcb380df7b94b206e0d06ec719c48f604c679531c
Contents?: true
Size: 803 Bytes
Versions: 24
Compression:
Stored size: 803 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_DISCARD_HPP #define TAO_JSON_PEGTL_INTERNAL_DISCARD_HPP #include "../config.hpp" #include "skip_control.hpp" #include "../analysis/generic.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { struct discard { using analyze_t = analysis::generic< analysis::rule_type::opt >; template< typename Input > [[nodiscard]] static bool match( Input& in ) noexcept { static_assert( noexcept( in.discard() ) ); in.discard(); return true; } }; template<> inline constexpr bool skip_control< discard > = true; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems