Sha256: b4fd48a0a6e148167551ba930a43a491ea8b5d65c4579cb0ffd0c3e19b299947
Contents?: true
Size: 877 Bytes
Versions: 24
Compression:
Stored size: 877 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_ANALYSIS_RULE_TYPE_HPP #define TAO_JSON_PEGTL_ANALYSIS_RULE_TYPE_HPP #include "../config.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::analysis { enum class rule_type : char { any, // Consumption-on-success is always true; assumes bounded repetition of conjunction of sub-rules. opt, // Consumption-on-success not necessarily true; assumes bounded repetition of conjunction of sub-rules. seq, // Consumption-on-success depends on consumption of (non-zero bounded repetition of) conjunction of sub-rules. sor // Consumption-on-success depends on consumption of (non-zero bounded repetition of) disjunction of sub-rules. }; } // namespace TAO_JSON_PEGTL_NAMESPACE::analysis #endif
Version data entries
24 entries across 24 versions & 1 rubygems